@51yzone/pc-components
Version:
An enterprise-class UI design language and React-based implementation
23 lines (22 loc) • 613 B
TypeScript
/**
* 关键字:手机验证码
* 新增人:徐友万
*/
import React from 'react';
import { ISchemaFormActions } from '@formily/antd';
import { SizeType } from 'antd/lib/config-provider/SizeContext';
import { IGetCode } from './login';
interface IProps {
value: string;
initCountDown?: number;
actions?: ISchemaFormActions;
size?: SizeType;
mobile?: string;
mobileName?: any;
prefixIconVisible?: boolean;
onChange: (value: any) => void;
getCode: (params: IGetCode) => void;
prefixCls?: string;
}
declare const CodeInput: React.FC<IProps>;
export default CodeInput;