chromium/ui/file_manager/file_manager/foreground/js/ui/a11y_announce.ts

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

export interface A11yAnnounce {
  /**
   * @param text Text to be announced by screen reader, which should be already
   * translated.
   */
  speakA11yMessage(text: string): void;
}