Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
64005a4a
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
64005a4a
编写于
3月 14, 2022
作者:
A
AOL
提交者:
Gitee
3月 14, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix unmatching problem with d.ts
Signed-off-by:
N
magekkkk
<
lixin113@huawei.com
>
上级
7ae3f55a
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
12 addition
and
12 deletion
+12
-12
zh-cn/application-dev/reference/apis/js-apis-audio.md
zh-cn/application-dev/reference/apis/js-apis-audio.md
+10
-10
zh-cn/application-dev/reference/apis/js-apis-medialibrary.md
zh-cn/application-dev/reference/apis/js-apis-medialibrary.md
+2
-2
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-audio.md
浏览文件 @
64005a4a
...
...
@@ -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:
Active
DeviceType, 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:
Active
DeviceType, 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:
Active
DeviceType, 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:
Active
DeviceType): 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
监听铃声模式变化事件。
...
...
zh-cn/application-dev/reference/apis/js-apis-medialibrary.md
浏览文件 @
64005a4a
...
...
@@ -1022,7 +1022,7 @@ async function example() {
### trash<sup>8+</sup>
trash(isTrash: boolean, callback: AsyncCallback
<
void
&g;
): void
trash(isTrash: boolean, callback: AsyncCallback
<
void
&g
t
;
): void
当文件被定位时,将文件放到垃圾文件夹,使用callback方式返回异步结果。
...
...
@@ -1061,7 +1061,7 @@ async function example() {
### trash<sup>8+</sup>
trash(isTrash: boolean
,
): Promise
<
void
>
trash(isTrash: boolean): Promise
<
void
>
当文件被定位时,将文件放到垃圾文件夹,使用promise方式返回异步结果。
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录