UNPKG

@logicwind/react-native-tvos-keyboard

Version:

Native Apple TV keyboard for React Native tvOS with voice typing support.

19 lines 668 B
import { type ViewStyle, type NativeSyntheticEvent, type ViewProps } from 'react-native'; type OnFocusEvent = NativeSyntheticEvent<{ focused: boolean; }>; type OnBlurEvent = NativeSyntheticEvent<{ blurred: boolean; }>; type OnTextChangeEvent = NativeSyntheticEvent<{ text: string; }>; type TvosKeyboardProps = ViewProps & { onTextChange?: (event: OnTextChangeEvent) => void; onFocus?: (event: OnFocusEvent) => void; onBlur?: (event: OnBlurEvent) => void; style?: ViewStyle; }; export declare const TvosKeyboardView: (props: TvosKeyboardProps) => import("react/jsx-runtime").JSX.Element | null; export {}; //# sourceMappingURL=index.d.ts.map