/* * 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. */ /** * Mesh container for static fixed-size layout scenarios. * @since 7 */ interface GridItemInterface { /** * Return to get GridItem. * @since 7 */ (): GridItemAttribute; } /** * @since 7 */ declare class GridItemAttribute extends CommonMethod { /** * This parameter specifies the start line number of the current element. * @since 7 */ rowStart(value: number): GridItemAttribute; /** * Specifies the end line number of the current element. * @since 7 */ rowEnd(value: number): GridItemAttribute; /** * This parameter specifies the start column number of the current element. * @since 7 */ columnStart(value: number): GridItemAttribute; /** * This parameter specifies the end column number of the current element. * @since 7 */ columnEnd(value: number): GridItemAttribute; /** * This parameter specifies whether to recreate the node when the component build is triggered. * @since 7 * @deprecated since 9 */ forceRebuild(value: boolean): GridItemAttribute; /** * Called when judging whether it is selectable. * @since 8 */ selectable(value: boolean): GridItemAttribute; /** * Called when the gridItem is selected. * @since 8 */ onSelect(event: (isSelected: boolean) => void): GridItemAttribute; } /** * Defines GridItem Component. * @since 7 */ declare const GridItem: GridItemInterface /** * Defines GridItem Component instance. * @since 7 */ declare const GridItemInstance: GridItemAttribute;