@progress/kendo-angular-layout
Version:
Kendo UI for Angular Layout Package - a collection of components to create professional application layoyts
18 lines (17 loc) • 629 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 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;
}