mirror of
https://github.com/tale/headplane.git
synced 2026-07-26 15:58:14 +00:00
11 lines
189 B
TypeScript
11 lines
189 B
TypeScript
export interface User {
|
|
id: string;
|
|
name: string;
|
|
createdAt: string;
|
|
displayName?: string;
|
|
email?: string;
|
|
providerId?: string;
|
|
provider?: string;
|
|
profilePicUrl?: string;
|
|
}
|