@aures/custom-react-table
Version:
dynamic table based on react table v7
17 lines (16 loc) • 716 B
TypeScript
import React from 'react';
import { TableInstance } from 'react-table';
import { ReactJSXElement } from '@emotion/react/types/jsx-namespace';
type FilterPageCustomProps<T extends Record<string, unknown>> = {
instance: TableInstance<T>;
anchorEl?: Element;
onClose?: () => void;
show?: boolean;
setLocalFilterActive: any;
filterActive?: boolean;
tableName: string;
customFilterJsx: ReactJSXElement;
allFiltersCustom: any;
};
export declare function FilterPageCustom<T extends Record<string, unknown>>({ instance, onClose, filterActive, setLocalFilterActive, tableName, customFilterJsx, allFiltersCustom, }: FilterPageCustomProps<T>): React.ReactElement;
export {};