UNPKG

react-native-a11y

Version:

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

7 lines (5 loc) 199 B
import { NativeSyntheticEvent } from "react-native"; export type KeyboardFocusEvent = NativeSyntheticEvent<{ isFocused: boolean; }>; export type OnFocusChangeFn = (e: KeyboardFocusEvent) => void;