daddy/client/src/types/user.ts

6 lines
97 B
TypeScript

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