blob: 97d7aefa736eadb6e49aafa5ad74bba15479c52c [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/** @interface */
class A11yAnnounce {
/**
* @param {string} text Text to be announced by screen reader, which should be
* already translated.
*/
speakA11yMessage(text) {}
}