/** * Accessibility.ts * * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT license. * * Web wrapper for subscribing or querying the current state of the * screen reader. */ import { Accessibility as CommonAccessibility } from '../common/Accessibility'; export class Accessibility extends CommonAccessibility { // Calling this API on web has no effect. isScreenReaderEnabled(): boolean { return false; } } export default new Accessibility();