guesstimate/client/src/types/user.ts

7 lines
110 B
TypeScript
Raw Normal View History

2020-08-08 15:04:59 +02:00
export interface User {
id: string
email: string
name?: string
connectedAt?: Date
createdAt?: Date
}