UNPKG

@51yzone/pc-components

Version:

An enterprise-class UI design language and React-based implementation

34 lines (33 loc) 926 B
import MobileLogin from './mobile-login'; import AccountLogin from './account-login'; import CodeImg from './code-img'; import CodeMobile from './code-mobile'; import PwdConfirm, { pwdConfirmEffects } from './pwd-confirm'; import ForgetPwd from './forget-pwd'; export declare type IGetCode = { mobile: string; }; export declare type IVerifyCode = { mobile: string; verifyPhone: string; }; export declare type IPwdChange = { mobile: string; newpassword: string; repassword: string; }; export interface OtherLoginItem { type: 'alipay'; onClick: () => any; } declare const Login: { AccountLogin?: typeof AccountLogin; MobileLogin?: typeof MobileLogin; CodeImg?: typeof CodeImg; CodeMobile?: typeof CodeMobile; ForgetPwd?: typeof ForgetPwd; PwdConfirm?: typeof PwdConfirm; pwdConfirmEffects?: typeof pwdConfirmEffects; defaultProps: Object; }; export default Login;