guesstimate/client/src/types/user.ts

7 lines
110 B
TypeScript

export interface User {
id: string
email: string
name?: string
connectedAt?: Date
createdAt?: Date
}