UNPKG

speech-rule-engine

Version:

A standalone speech rule engine for XML structures, based on the original engine from ChromeVox.

12 lines (11 loc) 511 B
import * as EngineConst from '../common/engine_const.js'; import * as AudioUtil from './audio_util.js'; import { AuditoryDescription } from './auditory_description.js'; import { MarkupRenderer } from './markup_renderer.js'; export declare class AcssRenderer extends MarkupRenderer { markup(descrs: AuditoryDescription[]): string; error(key: number): string; prosodyElement(key: EngineConst.personalityProps, value: number): string; pause(pause: AudioUtil.Pause): string; private prosody_; }