Interface RowsLayout

Content blocks organized in rows, with variable elements per row.

interface RowsLayout {
    display: RowsDisplay[];
    truncate_after?: number;
    type: "rows";
}

Properties

display: RowsDisplay[]

A list of ways to display sets of rows.

truncate_after?: number

How the content should be truncated.

type