react-native-a11y
Version:
Improvements of a11y for ReactNative, this library improve work with reader and keyboard focus and reader in general.
20 lines (19 loc) • 461 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.a11yConfig = void 0;
const A11Y_DEPRECATED = 'change';
class A11yConfig {
a11yServiceChangeEvent = A11Y_DEPRECATED;
init({
a11yEventName
}) {
this.a11yServiceChangeEvent = a11yEventName;
}
get a11yEventName() {
return this.a11yServiceChangeEvent;
}
}
const a11yConfig = exports.a11yConfig = new A11yConfig();
//# sourceMappingURL=RNA11yConfig.js.map