layout_renderer.d.ts 603 B

1234567891011121314151617
  1. import * as AudioUtil from './audio_util.js';
  2. import { AuditoryDescription } from './auditory_description.js';
  3. import { XmlRenderer } from './xml_renderer.js';
  4. export declare class LayoutRenderer extends XmlRenderer {
  5. static options: {
  6. cayleyshort: boolean;
  7. linebreaks: boolean;
  8. };
  9. finalize(str: string): string;
  10. pause(_pause: AudioUtil.Pause): string;
  11. prosodyElement(attr: string, value: number): string;
  12. closeTag(tag: string): string;
  13. markup(descrs: AuditoryDescription[]): string;
  14. private processContent;
  15. private values;
  16. private layoutValue;
  17. }