UNPKG

react-native-a11y

Version:

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

9 lines (7 loc) 178 B
import type { ViewProps, View } from "react-native"; export type A11yOrderProps = { a11yOrder: { ref: React.RefObject<View>; onLayout: () => void; }; } & ViewProps;