46 Star 177 Fork 4.8K

OpenHarmony/interface_sdk-js

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
@ohos.file.cloudSyncManager.d.ts 24.37 KB
一键复制 编辑 原始数据 按行查看 历史
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644
/*
* Copyright (c) 2023 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"),
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @file
* @kit CoreFileKit
*/
import type { AsyncCallback, Callback } from './@ohos.base';
/**
* Provides the capabilities to manage the state and data of cloud file synchronization.
*
* @namespace cloudSyncManager
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since arkts{ '1.1':'10','1.2':'20'}
* @arkts 1.1&1.2
*/
declare namespace cloudSyncManager {
/**
* Modify switch state of the application's cloud synchronization capability.
*
* @param { string } accountId - Current account id
* @param { string } bundleName - Name of bundle whose switchStatus is changing
* @param { boolean } status - New switch status
* @returns { Promise<void> } - Return Promise
* @throws { BusinessError } 201 - Permission verification failed.
* @throws { BusinessError } 202 - The caller is not a system application.
* @throws { BusinessError } 401 - The input parameter is invalid.Possible causes:1.Mandatory parameters are left unspecified;
* <br>2.Incorrect parameter types.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @systemapi
* @since arkts{ '1.1':'10','1.2':'20'}
* @arkts 1.1&1.2
*/
function changeAppCloudSwitch(accountId: string, bundleName: string, status: boolean): Promise<void>;
/**
* Modify switch state of the application's cloud synchronization capability.
*
* @param { string } accountId - Current account id
* @param { string } bundleName - Name of bundle whose switchStatus is changing
* @param { boolean } status - New switch status
* @param { AsyncCallback<void> } [callback] - Callback function
* @throws { BusinessError } 201 - Permission verification failed.
* @throws { BusinessError } 202 - The caller is not a system application.
* @throws { BusinessError } 401 - The input parameter is invalid.Possible causes:1.Mandatory parameters are left unspecified;
* <br>2.Incorrect parameter types.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @systemapi
* @since arkts{ '1.1':'10','1.2':'20'}
* @arkts 1.1&1.2
*/
function changeAppCloudSwitch(
accountId: string,
bundleName: string,
status: boolean,
callback: AsyncCallback<void>
): void;
/**
* Notify the change of data in cloud.
*
* @param { string } accountId - Current account id
* @param { string } bundleName - Name of bundle whose switchStatus is changing
* @returns { Promise<void> } Return Promise
* @throws { BusinessError } 201 - Permission verification failed.
* @throws { BusinessError } 202 - The caller is not a system application.
* @throws { BusinessError } 401 - The input parameter is invalid.Possible causes:1.Mandatory parameters are left unspecified;
* <br>2.Incorrect parameter types.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @systemapi
* @since arkts{ '1.1':'10','1.2':'20'}
* @arkts 1.1&1.2
*/
function notifyDataChange(accountId: string, bundleName: string): Promise<void>;
/**
* Notify the change of data in cloud.
*
* @param { string } accountId - Current account id
* @param { string } bundleName - Name of bundle whose switchStatus is changing
* @param { AsyncCallback<void> } [callback] - Callback function
* @throws { BusinessError } 201 - Permission verification failed.
* @throws { BusinessError } 202 - The caller is not a system application.
* @throws { BusinessError } 401 - The input parameter is invalid.Possible causes:1.Mandatory parameters are left unspecified;
* <br>2.Incorrect parameter types.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @systemapi
* @since arkts{ '1.1':'10','1.2':'20'}
* @arkts 1.1&1.2
*/
function notifyDataChange(accountId: string, bundleName: string, callback: AsyncCallback<void>): void;
/**
* Enable the cloud file synchronization function.
*
* @permission ohos.permission.CLOUDFILE_SYNC_MANAGER
* @param { string } accountId - Current account id.
* @param { Record<string, boolean> } switches - Indicates switches information of all applications.
* @returns { Promise<void> } Return Promise
* @throws { BusinessError } 201 - Permission verification failed.
* @throws { BusinessError } 202 - The caller is not a system application.
* @throws { BusinessError } 401 - The input parameter is invalid.Possible causes:1.Mandatory parameters are left unspecified;
* <br>2.Incorrect parameter types.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @systemapi
* @since arkts{ '1.1':'10','1.2':'20'}
* @arkts 1.1&1.2
*/
function enableCloud(accountId: string, switches: Record<string, boolean>): Promise<void>;
/**
* Enable the cloud file synchronization function.
*
* @permission ohos.permission.CLOUDFILE_SYNC_MANAGER
* @param { string } accountId - Current account id
* @param { Record<string, boolean> } switches - Indicates switches information of all applications.
* @param { AsyncCallback<void> } [callback] - Callback function
* @throws { BusinessError } 201 - Permission verification failed.
* @throws { BusinessError } 202 - The caller is not a system application.
* @throws { BusinessError } 401 - The input parameter is invalid.Possible causes:1.Mandatory parameters are left unspecified;
* <br>2.Incorrect parameter types.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @systemapi
* @since arkts{ '1.1':'10','1.2':'20'}
* @arkts 1.1&1.2
*/
function enableCloud(accountId: string, switches: Record<string, boolean>, callback: AsyncCallback<void>): void;
/**
* Disable the cloud file synchronization function.
*
* @permission ohos.permission.CLOUDFILE_SYNC_MANAGER
* @param { string } accountId - Current account id.
* @returns { Promise<void> } Return Promise.
* @throws { BusinessError } 201 - Permission verification failed.
* @throws { BusinessError } 202 - The caller is not a system application.
* @throws { BusinessError } 401 - The input parameter is invalid.Possible causes:1.Mandatory parameters are left unspecified;
* <br>2.Incorrect parameter types.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @systemapi
* @since arkts{ '1.1':'10','1.2':'20'}
* @arkts 1.1&1.2
*/
function disableCloud(accountId: string): Promise<void>;
/**
* Disable the cloud file synchronization function.
*
* @permission ohos.permission.CLOUDFILE_SYNC_MANAGER
* @param { string } accountId - Current account id.
* @param { AsyncCallback<void> } callback - Callback function
* @throws { BusinessError } 201 - Permission verification failed.
* @throws { BusinessError } 202 - The caller is not a system application.
* @throws { BusinessError } 401 - The input parameter is invalid.Possible causes:1.Mandatory parameters are left unspecified;
* <br>2.Incorrect parameter types.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @systemapi
* @since arkts{ '1.1':'10','1.2':'20'}
* @arkts 1.1&1.2
*/
function disableCloud(accountId: string, callback: AsyncCallback<void>): void;
/**
* Describes the clear action type.
*
* @enum { number }
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @systemapi
* @since arkts{ '1.1':'10','1.2':'20'}
* @arkts 1.1&1.2
*/
enum Action {
/**
* Indicates clearing cloud identification only, retaining local cached data.
*
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @systemapi
* @since arkts{ '1.1':'10','1.2':'20'}
* @arkts 1.1&1.2
*/
RETAIN_DATA,
/**
* Indicates clearing all cloud-related file data, which synchronized with the cloud.
*
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @systemapi
* @since arkts{ '1.1':'10','1.2':'20'}
* @arkts 1.1&1.2
*/
CLEAR_DATA
}
/**
* Clean up cloud-related file data based on specific action.
*
* @permission ohos.permission.CLOUDFILE_SYNC_MANAGER
* @param { string } accountId - Current account id.
* @param { Record<string, Action> } appActions - Indicates information about cloud file need to clear in which way.
* @returns { Promise<void> } Return Promise.
* @throws { BusinessError } 201 - Permission verification failed.
* @throws { BusinessError } 202 - The caller is not a system application.
* @throws { BusinessError } 401 - The input parameter is invalid.Possible causes:1.Mandatory parameters are left unspecified;
* <br>2.Incorrect parameter types.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @systemapi
* @since arkts{ '1.1':'10','1.2':'20'}
* @arkts 1.1&1.2
*/
function clean(accountId: string, appActions: Record<string, Action>): Promise<void>;
/**
* Clean up cloud-related file data based on specific action.
*
* @permission ohos.permission.CLOUDFILE_SYNC_MANAGER
* @param { string } accountId - Current account id.
* @param { Record<string, Action> } appActions - Indicates information about cloud file need to clear in which way.
* @param { AsyncCallback<void> } callback - Callback function
* @throws { BusinessError } 201 - Permission verification failed.
* @throws { BusinessError } 202 - The caller is not a system application.
* @throws { BusinessError } 401 - The input parameter is invalid.Possible causes:1.Mandatory parameters are left unspecified;
* <br>2.Incorrect parameter types.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @systemapi
* @since arkts{ '1.1':'10','1.2':'20'}
* @arkts 1.1&1.2
*/
function clean(accountId: string, appActions: Record<string, Action>, callback: AsyncCallback<void>): void;
/**
* Notify the change of data in cloud.
*
* @permission ohos.permission.CLOUDFILE_SYNC_MANAGER
* @param { number } userId - The Id of the user whose cloud data changed
* @param { ExtraData } extraData - The change info from push notification
* @returns { Promise<void> } Return Promise
* @throws { BusinessError } 201 - Permission verification failed, usually the result returned by VerifyAccessToken.
* @throws { BusinessError } 202 - Permission verification failed, application which is not a system application uses system API.
* @throws { BusinessError } 401 - The input parameter is invalid.Possible causes:1.Mandatory parameters are left unspecified;
* <br>2.Incorrect parameter types.
* @throws { BusinessError } 13600001 - IPC error.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @systemapi
* @since arkts{ '1.1':'11','1.2':'20'}
* @arkts 1.1&1.2
*/
function notifyDataChange(userId: number, extraData: ExtraData): Promise<void>;
/**
* Notify the change of data in cloud.
*
* @permission ohos.permission.CLOUDFILE_SYNC_MANAGER
* @param { number } userId - The Id of the user whose cloud data changed
* @param { ExtraData } extraData - The change info from push notification
* @param { AsyncCallback<void> } callback - Callback function
* @throws { BusinessError } 201 - Permission verification failed, usually the result returned by VerifyAccessToken.
* @throws { BusinessError } 202 - Permission verification failed, application which is not a system application uses system API.
* @throws { BusinessError } 401 - The input parameter is invalid.Possible causes:1.Mandatory parameters are left unspecified;
* <br>2.Incorrect parameter types.
* @throws { BusinessError } 13600001 - IPC error.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @systemapi
* @since arkts{ '1.1':'11','1.2':'20'}
* @arkts 1.1&1.2
*/
function notifyDataChange(userId: number, extraData: ExtraData, callback: AsyncCallback<void>): void;
/**
* The change info from push notification.
*
* @interface ExtraData
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @systemapi
* @since arkts{ '1.1':'11','1.2':'20'}
* @arkts 1.1&1.2
*/
interface ExtraData {
/**
* The eventId of the push info.
*
* @type { string }
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @systemapi
* @since arkts{ '1.1':'11','1.2':'20'}
* @arkts 1.1&1.2
*/
eventId: string;
/**
* The change info.
*
* @type { string }
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @systemapi
* @since arkts{ '1.1':'11','1.2':'20'}
* @arkts 1.1&1.2
*/
extraData: string;
}
/**
* Describes the reason why the download task stop.
* @enum { number } DownloadStopReason
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
enum DownloadStopReason {
/**
* download task is not stopped.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
NO_STOP = 0,
/**
* Network is unavailable.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
NETWORK_UNAVAILABLE = 1,
/**
* The local storage space is full.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
LOCAL_STORAGE_FULL = 2,
/**
* Temperature control Limits.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
TEMPERATURE_LIMIT = 3,
/**
* User stopped the download task.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
USER_STOPPED = 4,
/**
* The local application has been unloaded.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
APP_UNLOAD = 5,
/**
* Other reasons of some internal error.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
OTHER_REASON = 6
}
/**
* Describes the state type of downgrade download.
* @enum { number } DownloadState
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
enum DownloadState {
/**
* Indicates that the download task in process now.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
RUNNING = 0,
/**
* Indicates that the download task finished.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
COMPLETED = 1,
/**
* Indicates that the download task stopped.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
STOPPED = 2
}
/**
* Defines the CloudFileInfo data structure.
* @typedef CloudFileInfo
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
interface CloudFileInfo {
/**
* Total number of files located in the cloud.
* @type { number }
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
cloudFileCount: number;
/**
* Total size of files located in the cloud, in units of bytes.
* @type { number }
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
cloudFileTotalSize: number;
/**
* Total number of files located locally.
* @type { number }
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
localFileCount: number;
/**
* Total size of files located locally, in units of bytes.
* @type { number }
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
localFileTotalSize: number;
/**
* Total number of files located both locally and in the cloud.
* @type { number }
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
bothFileCount: number;
/**
* Total size of files located both locally and in the cloud, in units of bytes.
* @type { number }
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
bothFileTotalSize: number;
}
/**
* Defines DownloadProgress object.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
class DownloadProgress {
/**
* The current download task state.
* @type { DownloadState }
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
state: DownloadState;
/**
* The number of files that downloaded successfully
* @type { number }
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
successfulCount: number;
/**
* The number of files that fail to be downloaded.
* @type { number }
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
failedCount: number;
/**
* Total number of all files to be downloaded.
* @type { number }
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
totalCount: number;
/**
* Total size of downloaded files.
* @type { number }
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
downloadedSize: number;
/**
* Total size of all files to be downloaded.
* @type { number }
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
totalSize: number;
/**
* The reason for stopping the download task.
* @type { DownloadStopReason }
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @since 20
* @arkts 1.1&1.2
*/
stopReason: DownloadStopReason;
}
/**
* DowngradeDownload object.
*
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @systemapi
* @since 20
* @arkts 1.1&1.2
*/
class DowngradeDownload {
/**
* A constructor used to create a DowngradeDownload object.
*
* @permission ohos.permission.CLOUDFILE_SYNC_MANAGER
* @param { string } bundleName - Name of the bundle that need to synchronize and subscribe the sync progress event.
* @throws { BusinessError } 201 - Permission verification failed, usually the result returned by VerifyAccessToken.
* @throws { BusinessError } 202 - Permission verification failed, application which is not a system application uses system API.
* @throws { BusinessError } 13900020 - Invalid argument. Possible causes:
* <br>1.Mandatory parameters are left unspecified; 2.Incorrect parameter types.
* @throws { BusinessError } 22400005 - Inner error. Possible causes:
* <br>1.Failed to access the database or execute the SQL statement.
* <br>2.System error, such as a null pointer, insufficient memory or a JS engine exception.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @systemapi
* @since 20
* @arkts 1.1&1.2
*/
constructor(bundleName: string);
/**
* Get the total size and number of files in different locations.
*
* @permission ohos.permission.CLOUDFILE_SYNC_MANAGER
* @returns { Promise<CloudFileInfo> } - Return the file size and number info.
* @throws { BusinessError } 201 - Permission verification failed, usually the result returned by VerifyAccessToken.
* @throws { BusinessError } 202 - Permission verification failed, application which is not a system application uses system API.
* @throws { BusinessError } 13600001 - IPC error. Possible causes:
* <br>1.IPC failed or timed out. 2.Failed to load the service.
* @throws { BusinessError } 13900010 - Try again.
* @throws { BusinessError } 22400005 - Inner error. Possible causes:
* <br>1.Failed to access the database or execute the SQL statement.
* <br>2.System error, such as a null pointer, insufficient memory or a JS engine exception.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @systemapi
* @since 20
* @arkts 1.1&1.2
*/
getCloudFileInfo(): Promise<CloudFileInfo>;
/**
* Start to download all cloud files of the specified application to local.
*
* @permission ohos.permission.CLOUDFILE_SYNC_MANAGER
* @param { Callback<DownloadProgress> } callback - callback function with a `DownloadProgress` argument.
* @returns { Promise<void> } - Return Promise.
* @throws { BusinessError } 201 - Permission verification failed, usually the result returned by VerifyAccessToken.
* @throws { BusinessError } 202 - Permission verification failed, application which is not a system application uses system API.
* @throws { BusinessError } 13600001 - IPC error. Possible causes:
* <br>1.IPC failed or timed out. 2.Failed to load the service.
* @throws { BusinessError } 13900010 - Try again.
* @throws { BusinessError } 13900020 - Invalid argument. Possible causes:
* <br>1.Mandatory parameters are left unspecified; 2.Incorrect parameter types.
* @throws { BusinessError } 22400005 - Inner error. Possible causes:
* <br>1.Failed to access the database or execute the SQL statement.
* <br>2.System error, such as a null pointer, insufficient memory or a JS engine exception.
* @throws { BusinessError } 22400006 - The same task is already in progress.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @systemapi
* @since 20
* @arkts 1.1&1.2
*/
startDownload(callback: Callback<DownloadProgress>): Promise<void>;
/**
* Stop the specified application's download task.
*
* @permission ohos.permission.CLOUDFILE_SYNC_MANAGER
* @returns { Promise<void> } - Return Promise.
* @throws { BusinessError } 201 - Permission verification failed, usually the result returned by VerifyAccessToken.
* @throws { BusinessError } 202 - Permission verification failed, application which is not a system application uses system API.
* @throws { BusinessError } 13600001 - IPC error. Possible causes:
* <br>1.IPC failed or timed out. 2.Failed to load the service.
* @throws { BusinessError } 22400005 - Inner error. Possible causes:
* <br>1.Failed to access the database or execute the SQL statement.
* <br>2.System error, such as a null pointer, insufficient memory or a JS engine exception.
* @syscap SystemCapability.FileManagement.DistributedFileService.CloudSyncManager
* @systemapi
* @since 20
* @arkts 1.1&1.2
*/
stopDownload(): Promise<void>;
}
}
export default cloudSyncManager;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/openharmony/interface_sdk-js.git
git@gitee.com:openharmony/interface_sdk-js.git
openharmony
interface_sdk-js
interface_sdk-js
master

搜索帮助