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

!1377 修正resourceManager数据类型错误

Merge pull request !1377 from zhoujunquan/master
......@@ -305,7 +305,7 @@ getMedia(resId: number, callback: AsyncCallback<Uint8Array>): void
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| resId | number | 是 | 资源ID值 |
| callback | AsyncCallback<Array<Uint8Array>> | 是 | 异步回调,用于返回获取的媒体文件内容 |
| callback | AsyncCallback<Uint8Array> | 是 | 异步回调,用于返回获取的媒体文件内容 |
- 示例:
```
......@@ -335,7 +335,7 @@ getMedia(resId: number): Promise<Uint8Array>
- 返回值:
| 类型 | 说明 |
| -------- | -------- |
| Promise<Array<Uint8Array>> | 资源ID值对应的媒体文件内容 |
| Promise<Uint8Array> | 资源ID值对应的媒体文件内容 |
- 示例:
```
......@@ -564,7 +564,7 @@ getRawFile(path: string, callback: AsyncCallback<Uint8Array>): void
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| path | string | 是 | rawfile文件路径 |
| callback | AsyncCallback<Array<Uint8Array>> | 是 | 异步回调,用于返回获取的rawfile文件内容 |
| callback | AsyncCallback<Uint8Array> | 是 | 异步回调,用于返回获取的rawfile文件内容 |
- 示例:
```
......@@ -593,7 +593,7 @@ getRawFile(path: string): Promise<Uint8Array>
- 返回值:
| 类型 | 说明 |
| -------- | -------- |
| Promise<Array<Uint8Array>> | rawfile文件内容 |
| Promise<Uint8Array> | rawfile文件内容 |
- 示例:
```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册