未验证 提交 ae5ba5a7 编写于 作者: O openharmony_ci 提交者: Gitee

!1998 【轻量级 PR】:fix unmatching problem with d.ts

Merge pull request !1998 from AOL/N/A
......@@ -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\<VolumeEvent>): void
on(type: 'ringerModeChange', callback: Callback\<AudioRingMode>): void
监听铃声模式变化事件。
......
......@@ -1022,7 +1022,7 @@ async function example() {
### trash<sup>8+</sup>
trash(isTrash: boolean, callback: AsyncCallback&lt;void&g;): void
trash(isTrash: boolean, callback: AsyncCallback&lt;void&gt;): void
当文件被定位时,将文件放到垃圾文件夹,使用callback方式返回异步结果。
......@@ -1061,7 +1061,7 @@ async function example() {
### trash<sup>8+</sup>
trash(isTrash: boolean,): Promise&lt;void&gt;
trash(isTrash: boolean): Promise&lt;void&gt;
当文件被定位时,将文件放到垃圾文件夹,使用promise方式返回异步结果。
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册