File size: 290 Bytes
df7f428 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
export interface ILogin {
email: string;
password: string;
}
export interface ILoginResponse {
token: string;
}
export interface IRegister {
first_name: string;
last_name: string;
email: string;
password: string;
}
export interface IRegisterResponse {
user_id: string;
}
|