From 64005a4a0f1f29cd1f3a630b2804223f5ea32e23 Mon Sep 17 00:00:00 2001 From: AOL Date: Mon, 14 Mar 2022 02:25:31 +0000 Subject: [PATCH] fix unmatching problem with d.ts Signed-off-by: magekkkk --- .../reference/apis/js-apis-audio.md | 20 +++++++++---------- .../reference/apis/js-apis-medialibrary.md | 4 ++-- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-audio.md b/zh-cn/application-dev/reference/apis/js-apis-audio.md index e7e1b3a06e..a496e58c7c 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-audio.md +++ b/zh-cn/application-dev/reference/apis/js-apis-audio.md @@ -1028,7 +1028,7 @@ audioManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG, (err, value)=>{ ### getDevices -(deviceFlag: DeviceFlag): Promise<AudioDeviceDescriptors> +getDevices(deviceFlag: DeviceFlag): Promise<AudioDeviceDescriptors> 获取音频设备列表,使用Promise方式异步返回结果。 @@ -1057,7 +1057,7 @@ audioManager.getDevices(audio.DeviceFlag.OUTPUT_DEVICES_FLAG).then((data)=> ### setDeviceActive -setDeviceActive(deviceType: DeviceType, active: boolean, callback: AsyncCallback<void>): void +setDeviceActive(deviceType: ActiveDeviceType, active: boolean, callback: AsyncCallback<void>): void 设置设备激活状态,使用callback方式异步返回结果。 @@ -1067,7 +1067,7 @@ setDeviceActive(deviceType: DeviceType, active: boolean, callback: AsyncCallback | 参数名 | 类型 | 必填 | 说明 | | ---------- | ------------------------- | ---- | ------------------------ | -| deviceType | [DeviceType](#devicetype) | 是 | 音频设备类型。 | +| deviceType | [ActiveDeviceType](#activedevicetype) | 是 | 活跃音频设备类型。 | | active | boolean | 是 | 设备激活状态。 | | callback | AsyncCallback<void> | 是 | 回调返回设置成功或失败。 | @@ -1086,7 +1086,7 @@ audioManager.setDeviceActive(audio.DeviceType.SPEAKER, true, (err)=> { ### setDeviceActive -setDeviceActive(deviceType: DeviceType, active: boolean): Promise<void> +setDeviceActive(deviceType: ActiveDeviceType, active: boolean): Promise<void> 设置设备激活状态,使用Promise方式异步返回结果。 @@ -1096,7 +1096,7 @@ setDeviceActive(deviceType: DeviceType, active: boolean): Promise<void> | 参数名 | 类型 | 必填 | 说明 | | ---------- | ------------------------- | ---- | -------------- | -| deviceType | [DeviceType](#devicetype) | 是 | 音频设备类型。 | +| deviceType | [ActiveDeviceType](#activedevicetype) | 是 | 活跃音频设备类型。 | | active | boolean | 是 | 设备激活状态。 | **返回值:** @@ -1117,7 +1117,7 @@ audioManager.setDeviceActive(audio.DeviceType.SPEAKER, true).then(()=> ### isDeviceActive -isDeviceActive(deviceType: DeviceType, callback: AsyncCallback<boolean>): void +isDeviceActive(deviceType: ActiveDeviceType, callback: AsyncCallback<boolean>): void 获取指定设备的激活状态,使用callback方式异步返回结果。 @@ -1127,7 +1127,7 @@ isDeviceActive(deviceType: DeviceType, callback: AsyncCallback<boolean>): | 参数名 | 类型 | 必填 | 说明 | | ---------- | ---------------------------- | ---- | ------------------------ | -| deviceType | [DeviceType](#devicetype) | 是 | 音频设备类型。 | +| deviceType | [ActiveDeviceType](#activedevicetype) | 是 | 活跃音频设备类型。 | | callback | AsyncCallback<boolean> | 是 | 回调返回设备的激活状态。 | **示例:** @@ -1146,7 +1146,7 @@ audioManager.isDeviceActive(audio.DeviceType.SPEAKER, (err, value) => { ### isDeviceActive -isDeviceActive(deviceType: DeviceType): Promise<boolean> +isDeviceActive(deviceType: ActiveDeviceType): Promise<boolean> 获取指定设备的激活状态,使用Promise方式异步返回结果。 @@ -1156,7 +1156,7 @@ isDeviceActive(deviceType: DeviceType): Promise<boolean> | 参数名 | 类型 | 必填 | 说明 | | ---------- | ------------------------- | ---- | -------------- | -| deviceType | [DeviceType](#devicetype) | 是 | 音频设备类型。 | +| deviceType | [ActiveDeviceType](#activedevicetype) | 是 | 活跃音频设备类型。 | **返回值:** @@ -1308,7 +1308,7 @@ audioManager.on('volumeChange', (volumeEvent) => { ### on('ringerModeChange') -on(type: 'ringerModeChange', callback: Callback\): void +on(type: 'ringerModeChange', callback: Callback\): void 监听铃声模式变化事件。 diff --git a/zh-cn/application-dev/reference/apis/js-apis-medialibrary.md b/zh-cn/application-dev/reference/apis/js-apis-medialibrary.md index 06cc852357..3bfa88ace6 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-medialibrary.md +++ b/zh-cn/application-dev/reference/apis/js-apis-medialibrary.md @@ -1022,7 +1022,7 @@ async function example() { ### trash8+ -trash(isTrash: boolean, callback: AsyncCallback<void&g;): void +trash(isTrash: boolean, callback: AsyncCallback<void>): void 当文件被定位时,将文件放到垃圾文件夹,使用callback方式返回异步结果。 @@ -1061,7 +1061,7 @@ async function example() { ### trash8+ -trash(isTrash: boolean,): Promise<void> +trash(isTrash: boolean): Promise<void> 当文件被定位时,将文件放到垃圾文件夹,使用promise方式返回异步结果。 -- GitLab