1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| import { ICommonAPIParams } from '../../constant/types';
| /**
| * 开始录音 请求参数定义
| * @apiName startRecord
| */
| export interface IUnionStartRecordParams extends ICommonAPIParams {
| maxDuration: number;
| }
| /**
| * 开始录音 返回结果定义
| * @apiName startRecord
| */
| export interface IUnionStartRecordResult {
| }
| /**
| * 开始录音
| * @apiName startRecord
| */
| export declare function startRecord$(params: IUnionStartRecordParams): Promise<IUnionStartRecordResult>;
| export default startRecord$;
|
|