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

!17493 zlib资料问题

Merge pull request !17493 from xsz233/master
......@@ -2947,7 +2947,7 @@ try {
### bundleManager.getSharedBundleInfo<sup>10+</sup>
function getSharedBundleInfo(bundleName: string, moduleName: string): Promise\<Array\<SharedBundleInfo\>\>;
getSharedBundleInfo(bundleName: string, moduleName: string): Promise\<Array\<SharedBundleInfo\>\>;
以异步的方法获取指定的共享包信息,使用Promise形式返回结果。
......@@ -3037,7 +3037,7 @@ try {
### bundleManager.getAllSharedBundleInfo<sup>10+</sup>
function getAllSharedBundleInfo(): Promise\<Array\<SharedBundleInfo\>\>;
getAllSharedBundleInfo(): Promise\<Array\<SharedBundleInfo\>\>;
以异步的方法获取所有的共享包信息,使用Promise形式返回结果。
......
......@@ -172,6 +172,8 @@ try {
}
```
## zlib.compressFile<sup>9+</sup>
compressFile(inFile: string, outFile: string, options: Options): Promise\<void>;
压缩文件,压缩的结果通过promise返回,成功时返回null,失败时返回错误码。
......@@ -235,7 +237,7 @@ decompressFile(inFile: string, outFile: string, options: Options, callback: Asyn
| inFile | string | 是 | 指定的待解压缩文件的文件路径,路径必须为沙箱路径,沙箱路径可以通过context获取,可参考[FA模型](js-apis-inner-app-context.md)[Stage模型](js-apis-inner-application-context.md)。 |
| outFile | string | 是 | 指定的解压后的目录路径。 |
| options | [Options](#options) | 是 | 解压的配置参数。 |
| AsyncCallback<**void**> | callback | 否 | 解压的回调函数。 |
| AsyncCallback<**void**> | callback | 否 | 解压的回调函数。 |
**相关错误码**
......@@ -271,6 +273,8 @@ try {
}
```
## zlib.decompressFile<sup>9+</sup>
decompressFile(inFile: string, outFile: string, options: Options): Promise\<void>;
解压文件,解压的结果通过promise返回,成功时返回null,失败时返回错误码。
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册