ixfx
    Preparing search index...

    Type Alias UniformGrid

    A uniform grid where each row has the same number of columns.

    Consider JaggedGrid if you want a grid where rows can have different numbers of columns.

    type UniformGrid = {
        cols: number;
        rows: number;
    }
    Index

    Properties

    Properties

    cols: number
    rows: number