react-native-a11y-order
Version:
ReactNative library for managing screen reader focus ordering
16 lines • 424 B
TypeScript
import type { ViewProps } from 'react-native';
export type IndexCommands = {
focus: () => void;
};
export declare enum A11yOrderTypeEnum {
default = 0,
child = 1,
legacy = 2
}
export type A11yOrderType = keyof typeof A11yOrderTypeEnum;
export type A11yIndexProps = {
children: React.ReactNode;
index: number;
orderType?: A11yOrderType;
} & ViewProps;
//# sourceMappingURL=A11yIndex.types.d.ts.map