UNPKG

@td-design/react-native

Version:

react-native UI组件库

6 lines 273 B
import type { TextAreaProps } from './TextArea'; export default function useTextArea({ value, onChange }: Pick<TextAreaProps, 'value' | 'onChange'>): { inputValue: string | undefined; handleChange: (val: string) => void; }; //# sourceMappingURL=useTextArea.d.ts.map