提交 11b23c36 编写于 作者: X xsz233

fix doc

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