37 lines
659 B
TypeScript
37 lines
659 B
TypeScript
export interface LoginFormInterface {
|
|
phoneNumber: string,
|
|
password: string
|
|
}
|
|
|
|
export interface ResetPasswordInterface {
|
|
password: string,
|
|
repeatPassword: string
|
|
}
|
|
|
|
export interface ForgotPasswordInterface {
|
|
phoneNumber: string
|
|
}
|
|
|
|
export interface LoginWithCodeInterface {
|
|
phoneNumber: string
|
|
}
|
|
export interface ResetPasswordCodeInterface {
|
|
code: string
|
|
}
|
|
|
|
export interface LoginCodeInterface {
|
|
code: string
|
|
}
|
|
|
|
export interface RegisterInterface {
|
|
name: string,
|
|
family: string,
|
|
city: object,
|
|
capCity: object,
|
|
marketName: string,
|
|
phoneNumber: string,
|
|
password: string,
|
|
repeatPassword: string,
|
|
}
|
|
|