interface_sdk-js/api/@ohos.app.ability.dataUriUtils.d.ts
fanjiaojiao 3294683cc7 mater分支格式化api文件夹中dts
Signed-off-by: fanjiaojiao <fanjiaojiao@huawei.com>
2023-04-23 15:00:47 +08:00

71 lines
2.6 KiB
TypeScript

/*
* Copyright (c) 2022 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.
*/
/**
* Utility class used for handling objects that use the DataAbilityHelper scheme.
* @name dataUriUtils
* @since 9
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @permission N/A
*/
declare namespace dataUriUtils {
/**
* Obtains the ID attached to the end of the path component of the given uri.
*
* @since 9
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @param uri Indicates the uri object from which the ID is to be obtained.
* @returns Returns the ID attached to the end of the path component;
* @throws { BusinessError } 401 - If the input parameter is not valid parameter.
*/
function getId(uri: string): number
/**
* Attaches the given ID to the end of the path component of the given uri.
*
* @since 9
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @param uri Indicates the uri string from which the ID is to be obtained.
* @param id Indicates the ID to attach.
* @returns Returns the uri object with the given ID attached.
* @throws { BusinessError } 401 - If the input parameter is not valid parameter.
*/
function attachId(uri: string, id: number): string
/**
* Deletes the ID from the end of the path component of the given uri.
*
* @since 9
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @param uri Indicates the uri object from which the ID is to be deleted.
* @returns Returns the uri object with the ID deleted.
* @throws { BusinessError } 401 - If the input parameter is not valid parameter.
*/
function deleteId(uri: string): string
/**
* Updates the ID in the specified uri
*
* @since 9
* @syscap SystemCapability.Ability.AbilityRuntime.Core
* @param uri Indicates the uri object to be updated.
* @param id Indicates the new ID.
* @returns Returns the updated uri object.
* @throws { BusinessError } 401 - If the input parameter is not valid parameter.
*/
function updateId(uri: string, id: number): string
}
export default dataUriUtils;