/** * Specifies the gaps between the elements of the GridLayout. * * @public */ export interface IGridLayoutGap { /** * Defines the row gap between the elements. */ rows?: number | string; /** * Defines the column gap between the elements. */ columns?: number | string; } //# sourceMappingURL=IGridLayoutGapSettings.d.ts.map