Each entry is one cycle of the demo animation: select a profile → type text → generate → play audio.
| 107 | |
| 108 | /** Each entry is one cycle of the demo animation: select a profile → type text → generate → play audio. */ |
| 109 | interface DemoStep { |
| 110 | profileIndex: number; |
| 111 | text: string; |
| 112 | audioUrl: string; |
| 113 | engine: string; |
| 114 | duration: string; |
| 115 | effect?: string; |
| 116 | } |
| 117 | |
| 118 | const DEMO_SCRIPT: DemoStep[] = [ |
| 119 | { |
nothing calls this directly
no outgoing calls
no test coverage detected