UNPKG

es-grid-template

Version:

es-grid-template

22 lines (21 loc) 880 B
import React from 'react'; import type { ColumnsTable, GridTableProps } from "../type"; import type { GetRowKey } from "../type"; type Props<T> = GridTableProps<T> & { tableRef: any; triggerChangeColumns?: (columns: ColumnsTable<T>, type: string) => void; triggerChangeData?: (newData: T[], type: string) => void; getRowKey: GetRowKey<T>; triggerGroupColumns?: (groupedColumns: string[]) => void; triggerPaste?: (pastedRows: T[], pastedColumnsArray: string[], newData: T[], copyRows: T[]) => void; triggerFilter?: (queries: any) => void; setTooltipContent?: any; scrollHeight?: number; originData: T[]; mergedFilterKeys?: any; setMergedFilterKeys?: any; handleFullScreen?: any; isFullScreen?: boolean; }; declare const Group: <RecordType extends object>(props: Props<RecordType>) => React.JSX.Element; export default Group;