You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
/**
|
|
|
|
|
* Schemas 模块统一导出
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// Auth Schemas
|
|
|
|
|
export {
|
|
|
|
|
loginSchema,
|
|
|
|
|
registerSchema,
|
|
|
|
|
forgotPasswordSchema,
|
|
|
|
|
resetPasswordSchema,
|
|
|
|
|
changePasswordSchema,
|
|
|
|
|
phoneLoginSchema,
|
|
|
|
|
} from './auth';
|
|
|
|
|
export type {
|
|
|
|
|
LoginFormData,
|
|
|
|
|
RegisterFormData,
|
|
|
|
|
ForgotPasswordFormData,
|
|
|
|
|
ResetPasswordFormData,
|
|
|
|
|
ChangePasswordFormData,
|
|
|
|
|
PhoneLoginFormData,
|
|
|
|
|
} from './auth';
|
|
|
|
|
|
|
|
|
|
// User Schemas
|
|
|
|
|
export { userSchema, updateUserSchema, bindPhoneSchema, bindEmailSchema } from './user';
|
|
|
|
|
export type {
|
|
|
|
|
UserFormData,
|
|
|
|
|
UpdateUserFormData,
|
|
|
|
|
BindPhoneFormData,
|
|
|
|
|
BindEmailFormData,
|
|
|
|
|
} from './user';
|