es-grid-template
Version:
es-grid-template
15 lines (14 loc) • 507 B
TypeScript
import type { Table } from '@tanstack/react-table';
import { type Header } from '@tanstack/react-table';
import React from 'react';
interface TableHeadCellProps<T> {
t?: any;
table: Table<T>;
header: Header<T, unknown>;
getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement;
colSpan: any;
rowSpan: any;
rowIndex: number;
}
declare const TableHeadCell: <RecordType extends object>(props: TableHeadCellProps<RecordType>) => React.JSX.Element;
export default TableHeadCell;