| 23 | // Edit this section to customise all the content shown in the ControlUI demo. |
| 24 | |
| 25 | interface VoiceProfile { |
| 26 | name: string; |
| 27 | description: string; |
| 28 | language: string; |
| 29 | hasEffects: boolean; |
| 30 | } |
| 31 | |
| 32 | /** Voice profiles shown in the grid / scroll strip. Index matters — DemoScript references profiles by index. */ |
| 33 | const PROFILES: VoiceProfile[] = [ |
nothing calls this directly
no outgoing calls
no test coverage detected