Files
estimation-flow/src/lib/types.ts
T
2025-07-17 11:12:35 +00:00

8 lines
153 B
TypeScript

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