interface_sdk-js/api/arkui/RectModifier.d.ts
huiqiang 98e77fa9c6 add arkui kit
Signed-off-by: huiqiang <huiqiangdev@icloud.com>
2024-03-18 11:43:47 +08:00

44 lines
1.2 KiB
TypeScript

/*
* Copyright (c) 2024 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 ArkUI
*/
/// <reference path="../../component/common.d.ts" />
/// <reference path="../../component/rect.d.ts" />
/**
* Defines Rect Modifier
*
* @extends RectAttribute
* @implements AttributeModifier
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @since 12
*/
export declare class RectModifier extends RectAttribute implements AttributeModifier<RectAttribute> {
/**
* Defines the normal update attribute function.
*
* @param { RectAttribute } instance
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @crossplatform
* @since 12
*/
applyNormalAttribute?(instance: RectAttribute): void;
}