headplane/app/types/User.ts

6 lines
74 B
TypeScript
Raw Normal View History

export interface User {
2024-12-31 10:30:14 +05:30
id: string;
name: string;
createdAt: string;
2024-03-25 18:47:15 -04:00
}