Preparing search index...

    Interface TableGroupData<RowRecord, GroupRecord, ColumnRecord>

    Данные для отображения группы в таблице с группировкой

    interface TableGroupData<
        RowRecord extends Record<string, any>,
        GroupRecord extends GroupRecordType,
        ColumnRecord,
    > {
        group: GroupRecord;
        paginationProps?: TableGroupPaginationProps;
        props: TableGroupProps<RowRecord, ColumnRecord>;
        rows: RowRecord[];
    }

    Type Parameters

    • RowRecord extends Record<string, any>
    • GroupRecord extends GroupRecordType
    • ColumnRecord
    Index

    Properties

    paginationProps?: TableGroupPaginationProps
    rows: RowRecord[]