UNPKG

@fruits-chain/react-native-xiaoshu

Version:
10 lines (9 loc) 430 B
import React from 'react'; import type { NumberInputProps } from './interface'; /** * 数字输入框 * @description 输入中过滤所有非数字类字符,输入结束结合外界的 parser 修正数据 */ declare const NumberInput: React.ForwardRefExoticComponent<NumberInputProps & React.RefAttributes<import("react-native").TextInput>>; declare const NumberInputMemo: typeof NumberInput; export default NumberInputMemo;