UNPKG

react-native-a11y

Version:

Improvements of a11y for ReactNative, this library improve work with reader and keyboard focus and reader in general.

6 lines 273 B
import type { NativeSyntheticEvent } from 'react-native'; export type KeyboardFocusEvent = NativeSyntheticEvent<Readonly<{ isFocused: boolean; }>>; export type OnFocusChangeFn = (e: KeyboardFocusEvent) => void; //# sourceMappingURL=KeyboardFocusTextInput.types.d.ts.map