@maherunlocker/custom-react-table
Version:
dynamic table based on react table v7
8 lines (7 loc) • 344 B
TypeScript
import React from 'react';
import { TableInstance } from 'react-table';
declare type ColumnHidePageProps<T extends Record<string, unknown>> = {
instance: TableInstance<T>;
};
export declare function ColumnHidePageCustom<T extends Record<string, unknown>>({ instance, }: ColumnHidePageProps<T>): React.ReactElement | null;
export {};