interface_sdk-js/api/@ohos.application.formBindingData.d.ts
guyuanzhang 757145ef97 IssueNo: #I4TEF8
Description: add aafwk syscap info
Sig: SIG_ApplicationFramework
Feature or Bugfix: Feature
Binary Source: No
Signed-off-by: guyuanzhang <zhangguyuan@huawei.com>

Change-Id: Ie339cf1409377e94c74d5cbc3ebd6ad72d4e7bdf
2022-02-14 17:39:08 +08:00

38 lines
1.2 KiB
TypeScript

/*
* Copyright (c) 2021 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.
*/
/**
* interface of formBindingData.
*
* @name formBindingData
* @since 8
* @sysCap SystemCapability.Ability.AbilityRuntime.Core
*/
declare namespace formBindingData {
/**
* Create an FormBindingData instance.
*
* @since 8
* @sysCap SystemCapability.Ability.AbilityRuntime.Core
* @param obj Indicates the FormBindingData instance data.
* @return Returns the {@link FormBindingData} instance.
*/
function createFormBindingData(obj?: Object | string): FormBindingData;
interface FormBindingData {
data: Object
}
}
export default formBindingData;