UNPKG

antd-mobile

Version:
19 lines (18 loc) 717 B
import type { FC } from 'react'; import { NativeProps } from '../../utils/native-props'; import { PopupProps } from '../popup'; export declare type NumberKeyboardProps = { visible?: boolean; title?: string; confirmText?: string | null; customKey?: string | [string, string]; randomOrder?: boolean; showCloseButton?: boolean; onInput?: (v: string) => void; onDelete?: () => void; onClose?: () => void; onConfirm?: () => void; closeOnConfirm?: boolean; safeArea?: boolean; } & Pick<PopupProps, 'afterClose' | 'afterShow' | 'getContainer' | 'destroyOnClose' | 'forceRender' | 'stopPropagation'> & NativeProps; export declare const NumberKeyboard: FC<NumberKeyboardProps>;