interfaces/ts/data/user.ts

8 lines
126 B
TypeScript
Raw Normal View History

2024-05-31 13:14:08 +00:00
export interface IUser {
id: string;
data: {
role: 'admin' | 'user';
username: string;
password: string;
}
}