hightable
Version:
A dynamic windowed scrolling table component for react
15 lines (14 loc) • 591 B
TypeScript
import type { ReactNode } from 'react';
import type { ColumnParameters } from '../../contexts/ColumnParametersContext.js';
interface Props {
columnIndex: number;
columnName: string;
columnConfig: Omit<ColumnParameters, 'name' | 'index'>;
children?: ReactNode;
canMeasureWidth?: boolean;
ariaColIndex: number;
ariaRowIndex: number;
className?: string;
}
export default function ColumnHeader({ columnIndex, columnName, columnConfig, canMeasureWidth, ariaColIndex, ariaRowIndex, className, children }: Props): import("react/jsx-runtime").JSX.Element;
export {};