/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Sets the spacing between layout items horizontally and vertically. */ export interface TileLayoutGap { /** * Sets the vertical spacing in pixels. */ rows?: number; /** * Sets the horizontal spacing in pixels. */ columns?: number; }