Skip to content
Sheetwrite

Sheetwrite / Documentation

GridSizeProps@sheetwrite/core/adapter

Explicit width and height accepted by framework adapters.

Explicit width and height accepted by framework adapters.

Variants 2

{ height: number | string; fill?: never }
{ fill: true; height?: never }

Declaration

View full TypeScript declaration
export type GridSizeProps =
| {
height: number | string;
fill?: never;
}
| {
fill: true;
height?: never;
};