Files
2026-04-26 20:38:45 -04:00

11 lines
189 B
TypeScript

export interface User {
id: string;
name: string;
createdAt: string;
displayName?: string;
email?: string;
providerId?: string;
provider?: string;
profilePicUrl?: string;
}