8 lines
153 B
TypeScript
8 lines
153 B
TypeScript
|
|
|
||
|
|
export interface User {
|
||
|
|
id: number;
|
||
|
|
email: string;
|
||
|
|
password?: string; // Should be handled securely, not sent to client
|
||
|
|
name: string;
|
||
|
|
}
|