12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- import { Props } from './type';
- type InputType = 'text' | 'number' | 'idcard' | 'digit'
- | 'numberpad' | 'digitpad' | 'idcardpad'
- | 'safe-password' | 'nickname';
- interface AlipayInputProps {
- type?: InputType;
-
- 'random-number'?: boolean;
- controlled?: boolean;
- password?: boolean;
-
- name?: string;
-
- placeholder?: string;
-
- maxlength?: number;
-
- focus?: boolean;
-
- cursor?: number;
- onInput?: string;
- onFocus?: string;
- onConfirm?: string;
- onBlur?: string;
- }
- export declare const Input: (props: Props & AlipayInputProps) => any;
- export {};
|