UNPKG

@td-design/react-native

Version:

react-native UI组件库

7 lines 432 B
import type { NumberKeyboardInputProps } from './type'; export default function useNumberKeyboard({ type, value, onChange, onCheck, digit, placeholder, }: Pick<NumberKeyboardInputProps, 'value' | 'onChange' | 'onCheck' | 'digit' | 'placeholder' | 'type'>): { currentText: string | undefined; handleSubmit: (value: string) => Promise<void>; handleInputClear: () => void; }; //# sourceMappingURL=useNumberKeyboard.d.ts.map