rx-datatable API
    Preparing search index...

    Interface DataTableContext<T, K, ColName, ItemProps>

    interface DataTableContext<
        T,
        K = T,
        ColName = string,
        ItemProps = DefaultRowProps,
    > {
        rowConfigCache: Map<
            DataTableCellConfig<T, any, ColName, ItemProps>,
            DataTableColumn<T, any, ColName, ItemProps>,
        >;
        tableProps: DataTableCoreProps<T, K, ColName, ItemProps>;
    }

    Type Parameters

    Index
    rowConfigCache: Map<
        DataTableCellConfig<T, any, ColName, ItemProps>,
        DataTableColumn<T, any, ColName, ItemProps>,
    >