headplane/app/types/User.ts
2024-03-25 18:54:04 -04:00

6 lines
69 B
TypeScript

export type User = {
id: string;
name: string;
createdAt: Date;
}