6 lines
83 B
TypeScript
6 lines
83 B
TypeScript
/* tslint:disable */
|
|
export interface User {
|
|
id?: string;
|
|
password?: string;
|
|
}
|