10 lines
160 B
TypeScript
Raw Normal View History

2024-02-10 20:33:24 -05:00
export type User = {
email: string;
email_verified: boolean;
name: string;
nickname: string;
picture: string;
sub: string;
updated_at: string;
};