ixfx
    Preparing search index...

    Type Alias JaggedGrid

    JaggedGrid: Readonly<{ rows: number[] }>

    A grid where rows can have different numbers of columns.

    // Create a grid where first two rows have 2 columns,
    // third row has 5 columns and last as 2 columns
    const grid = {
    rows: [ 2, 2, 5, 2 ]
    }

    Consider using Grid if all rows will have the same number of columns.