audio_renderer.d.ts 376 B

12345678910
  1. import { KeyCode } from '../common/event_util.js';
  2. import { AuditoryDescription } from './auditory_description.js';
  3. import { Span } from './span.js';
  4. export interface AudioRenderer {
  5. separator: string;
  6. markup(descrs: AuditoryDescription[]): string;
  7. error(key: KeyCode | string): string | null;
  8. merge(strs: Span[]): string;
  9. finalize(str: string): string;
  10. }