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) 215 B
import type { NativeSyntheticEvent } from 'react-native'; export type KeyboardFocusEvent = NativeSyntheticEvent< Readonly<{ isFocused: boolean }> >; export type OnFocusChangeFn = (e: KeyboardFocusEvent) => void;