Represents a slot for a checkbox cell in a table.

interface ICheckboxCellSlot<RowData extends IRowData = IAnything> {
    disabled: boolean;
    row: RowData;
}

Type Parameters

Hierarchy (View Summary)

Properties

Properties

disabled: boolean
row: RowData