Interface for the head row slot of a table component.

interface IHeadRowSlot<RowData extends IRowData = IAnything> {
    columns: HeadColumn<RowData>[];
    fullWidth: number;
    mode: DisplayMode;
}

Type Parameters

Properties

columns: HeadColumn<RowData>[]

Represents an array of column headers with associated row data.

The type of data contained in each column's rows.

fullWidth: number