import LayoutData from '../../layoutEngine/layouts/layoutData'; export default class GridData extends LayoutData { static BEGINNING: number; static CENTER: number; static END: number; static FILL: number; static VERTICAL_ALIGN_BEGINNING: number; static VERTICAL_ALIGN_CENTER: number; static VERTICAL_ALIGN_END: number; static VERTICAL_ALIGN_FILL: number; static HORIZONTAL_ALIGN_BEGINNING: number; static HORIZONTAL_ALIGN_CENTER: number; static HORIZONTAL_ALIGN_END: number; static HORIZONTAL_ALIGN_FILL: number; static GRAB_HORIZONTAL: number; static GRAB_VERTICAL: number; static FILL_VERTICAL: number; static FILL_HORIZONTAL: number; static FILL_BOTH: number; horizontalAlignment: number; horizontalIndent: number; horizontalSpan: number; verticalAlignment: number; verticalIndent: number; verticalSpan: number; grabExcessHorizontalSpace: boolean; grabExcessVerticalSpace: boolean; widthHint: number; minimumWidth: number; heightHint: number; minimumHeight: number; exclude: boolean; constructor({ horizontalAlignment, verticalAlignment, horizontalSpan, verticalSpan, horizontalIndent, verticalIndent, grabExcessHorizontalSpace, grabExcessVerticalSpace, exclude, widthHint, heightHint, minimumWidth, minimumHeight }: { horizontalAlignment?: number; verticalAlignment?: number; horizontalSpan?: number; verticalSpan?: number; horizontalIndent?: number; verticalIndent?: number; grabExcessHorizontalSpace?: boolean; grabExcessVerticalSpace?: boolean; exclude?: boolean; widthHint?: number; heightHint?: number; minimumWidth?: number; minimumHeight?: number; }); }