5 lines
60 B
TypeScript
5 lines
60 B
TypeScript
export interface IUser {
|
|
type: string;
|
|
login: string;
|
|
}
|