interfaces/ts/data/user.ts

8 lines
146 B
TypeScript
Raw Normal View History

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