UNPKG

@td-design/react-native

Version:

react-native UI组件库

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