1/* 2 * Copyright (c) 2022-2023 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16/** 17 * Provides ports for relative containers. 18 * 19 * @interface RelativeContainerInterface 20 * @syscap SystemCapability.ArkUI.ArkUI.Full 21 * @since 9 22 * @form 23 */ 24/** 25 * Provides ports for relative containers. 26 * 27 * @interface RelativeContainerInterface 28 * @syscap SystemCapability.ArkUI.ArkUI.Full 29 * @crossplatform 30 * @since 10 31 * @form 32 */ 33interface RelativeContainerInterface { 34 (): RelativeContainerAttribute; 35} 36 37/** 38 * @extends CommonMethod 39 * @syscap SystemCapability.ArkUI.ArkUI.Full 40 * @since 9 41 * @form 42 */ 43/** 44 * @extends CommonMethod 45 * @syscap SystemCapability.ArkUI.ArkUI.Full 46 * @crossplatform 47 * @since 10 48 * @form 49 */ 50declare class RelativeContainerAttribute extends CommonMethod<RelativeContainerAttribute> {} 51 52/** 53 * RelativeContainer 54 * 55 * @syscap SystemCapability.ArkUI.ArkUI.Full 56 * @since 9 57 * @form 58 */ 59/** 60 * RelativeContainer 61 * 62 * @syscap SystemCapability.ArkUI.ArkUI.Full 63 * @crossplatform 64 * @since 10 65 * @form 66 */ 67declare const RelativeContainer: RelativeContainerInterface; 68 69/** 70 * RelativeContainerInstance 71 * 72 * @syscap SystemCapability.ArkUI.ArkUI.Full 73 * @since 9 74 * @form 75 */ 76/** 77 * RelativeContainerInstance 78 * 79 * @syscap SystemCapability.ArkUI.ArkUI.Full 80 * @crossplatform 81 * @since 10 82 * @form 83 */ 84declare const RelativeContainerInstance: RelativeContainerAttribute; 85