rx-datatable API
    Preparing search index...

    Interface ItemAndColumns<T, TRow, ColName, ItemProps>

    Return type of DataTableCoreProps.getRowConfig

    interface ItemAndColumns<
        T,
        TRow = T,
        ColName = string,
        ItemProps = DefaultRowProps,
    > {
        columns: IMapSource<
            ColName,
            DataTableCellConfig<T, TRow, ColName, ItemProps>,
        >;
        item?: TRow;
    }

    Type Parameters

    Index
    item?: TRow

    If provided, DefaultDataTableRow renders this item instead of the original row value. If the original item has type TRow, you can omit this prop to render the original item. If the original item is not a TRow, this prop is required to avoid runtime type errors.