igniteui-react-grids
Version:
Ignite UI React grid components.
25 lines (10 loc) • 380 B
TypeScript
/* jsonAPIPlainObject */
export declare class IgcSize
{
/** Gets or sets the horizontal component of Size */
public set width(value: number);
public get width(): number;
/** Gets or sets the vertical component of Size */
public set height(value: number);
public get height(): number;
}