6 lines
73 B
TypeScript
6 lines
73 B
TypeScript
export interface User {
|
|
id: string;
|
|
name: string;
|
|
role: 'admin';
|
|
}
|