UNPKG

react-native-a11y-order

Version:

ReactNative library for managing screen reader focus ordering

8 lines (6 loc) 157 B
import { RefObject } from 'react'; import { View } from 'react-native'; export type A11yOrderInfo<T> = { tag?: RefObject<View>; views: (T | null)[]; };