hojas/node_modules/speech-rule-engine/mjs/audio/audio_renderer.d.ts
2026-05-14 10:56:04 +02:00

10 lines
376 B
TypeScript

import { KeyCode } from '../common/event_util.js';
import { AuditoryDescription } from './auditory_description.js';
import { Span } from './span.js';
export interface AudioRenderer {
separator: string;
markup(descrs: AuditoryDescription[]): string;
error(key: KeyCode | string): string | null;
merge(strs: Span[]): string;
finalize(str: string): string;
}