es-grid-template
Version:
es-grid-template
18 lines (17 loc) • 670 B
TypeScript
/// <reference types="react" />
import type { Table } from '@tanstack/react-table';
import type { Header } from '@tanstack/react-table';
import type { Virtualizer } from '@tanstack/react-virtual';
interface TableHeadCellProps<T> {
t?: any;
table: Table<T>;
column: any;
header: Header<T, unknown>;
getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement;
columnVirtualizer: Virtualizer<HTMLDivElement, HTMLTableCellElement>;
colSpan: number;
rowSpan: number;
depth: number;
}
declare const TableHeadGroupCell: <RecordType extends object>(props: TableHeadCellProps<RecordType>) => JSX.Element;
export default TableHeadGroupCell;