headplane/app/types/User.ts

11 lines
181 B
TypeScript
Raw Normal View History

export interface User {
2024-12-31 10:30:14 +05:30
id: string;
name: string;
createdAt: string;
2025-02-19 13:01:20 -05:00
displayName?: string;
email?: string;
providerId?: string;
provider?: string;
profilePicUrl?: string;
2024-03-25 18:47:15 -04:00
}