UNPKG

cea-core

Version:
41 lines (40 loc) 1.22 kB
declare const schoolEdgeCases: { 宁波大学: { formIdx: number; rememberMe: string; checkCaptchaPath: string; getCaptchaPath: string; }; 武汉大学: { formIdx: number; rememberMe: string; checkCaptchaPath: string; getCaptchaPath: string; }; 福州大学: { formIdx: number; rememberMe: string; checkCaptchaPath: string; getCaptchaPath: string; submitCaptchakey: string; }; }; declare const defaultProps: { rememberMe: boolean; getCaptchaPath: string; checkCaptchaPath: string; formIdx: number; pwdEncrypt: boolean; }; declare const cloudDefaultProps: { lt: string; rememberMe: boolean; getCaptchaPath: string; submitCaptchakey: string; }; export declare type EdgeCasesSchools = keyof typeof schoolEdgeCases; declare type NoCloudDefaultProps = typeof defaultProps; declare type CloudDefaultProps = typeof cloudDefaultProps; export declare type DefaultProps = NoCloudDefaultProps & CloudDefaultProps; declare const _default: (schoolName: EdgeCasesSchools, isCloud: boolean) => DefaultProps; export default _default;