Interface RowsDisplay

An object describing how to display a single row.

interface RowsDisplay {
    blocks: number[];
    mode?: {
        type: "carousel";
    };
}

Properties

Properties

blocks: number[]

An array of block indices to use in this row.

mode?: {
    type: "carousel";
}

The display mode for this row.