engine_const.d.ts 697 B

1234567891011121314151617181920212223242526272829303132
  1. export declare enum Mode {
  2. SYNC = "sync",
  3. ASYNC = "async",
  4. HTTP = "http"
  5. }
  6. export declare enum personalityProps {
  7. PITCH = "pitch",
  8. RATE = "rate",
  9. VOLUME = "volume",
  10. PAUSE = "pause",
  11. JOIN = "join",
  12. LAYOUT = "layout"
  13. }
  14. export declare const personalityPropList: personalityProps[];
  15. export declare enum Speech {
  16. NONE = "none",
  17. SHALLOW = "shallow",
  18. DEEP = "deep"
  19. }
  20. export declare enum Markup {
  21. NONE = "none",
  22. LAYOUT = "layout",
  23. COUNTING = "counting",
  24. PUNCTUATION = "punctuation",
  25. SSML = "ssml",
  26. ACSS = "acss",
  27. SABLE = "sable",
  28. VOICEXML = "voicexml"
  29. }
  30. export declare const DOMAIN_TO_STYLES: {
  31. [key: string]: string;
  32. };