mirror of
https://github.com/tale/headplane.git
synced 2026-08-09 21:49:23 +00:00
6 lines
69 B
TypeScript
6 lines
69 B
TypeScript
export type User = {
|
|
id: string;
|
|
name: string;
|
|
createdAt: Date;
|
|
}
|