react-native-a11y-order
Version:
ReactNative library for managing screen reader focus ordering
13 lines • 377 B
TypeScript
import type { ViewProps } from 'react-native';
export declare enum A11yContainerTypeEnum {
none = 0,
table = 1,
list = 2,
landmark = 3,
group = 4
}
export type A11yContainerType = keyof typeof A11yContainerTypeEnum;
export interface A11yContainerProps extends ViewProps {
type?: A11yContainerType;
}
//# sourceMappingURL=A11yContainerView.types.d.ts.map