23 lines
344 B
TypeScript
23 lines
344 B
TypeScript
export interface User {
|
|
token?: string
|
|
userId?: string
|
|
|
|
}
|
|
|
|
export interface AccountLogin {
|
|
account?: string
|
|
password?: string;
|
|
}
|
|
|
|
export interface PhoneLogin {
|
|
phone?: string
|
|
captcha?: string;
|
|
}
|
|
|
|
export interface ResetPassword {
|
|
phone?: string
|
|
captcha?: string;
|
|
password?: string;
|
|
repassword?: string;
|
|
}
|