Files
asan-installer-front/src/types/index.ts
T
2024-08-05 19:58:03 +03:30

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,
}