export type AdminCreationResult = { id: string; email: string; created_at: Date; }; export type AuthorizedUser = { id: string; email: string; createdAt: Date; }; export type DatabaseUser = { id: string; email: string; password_hash: string; created_at: Date; };