( application_id, data, loading, )
| 338 | * @returns |
| 339 | */ |
| 340 | const playDemoText: (application_id: string, data: any, loading?: Ref<boolean>) => Promise<any> = ( |
| 341 | application_id, |
| 342 | data, |
| 343 | loading, |
| 344 | ) => { |
| 345 | return download( |
| 346 | `${prefix.value}/${application_id}/play_demo_text`, |
| 347 | 'post', |
| 348 | data, |
| 349 | undefined, |
| 350 | loading, |
| 351 | ) |
| 352 | } |
| 353 | |
| 354 | /** |
| 355 | * 文本转语音 |
nothing calls this directly
no test coverage detected