( application_id, data, loading, )
| 190 | * @returns |
| 191 | */ |
| 192 | const playDemoText: (application_id: string, data: any, loading?: Ref<boolean>) => Promise<any> = ( |
| 193 | application_id, |
| 194 | data, |
| 195 | loading, |
| 196 | ) => { |
| 197 | return download(`${prefix}/${application_id}/play_demo_text`, 'post', data, undefined, loading) |
| 198 | } |
| 199 | |
| 200 | /** |
| 201 | * 文本转语音 |
nothing calls this directly
no test coverage detected