ts-types/database/user.ts

7 lines
93 B
TypeScript
Raw Normal View History

2023-07-17 12:20:47 +01:00
interface User {
uuid: string;
domain: string;
atime: Date;
}
export { User }