UNPKG

hightable

Version:

A dynamic windowed scrolling table component for react

14 lines (13 loc) 545 B
import { type ReactNode } from 'react'; import type { HighTableProps } from '../types.js'; type Props = Pick<HighTableProps, 'columnConfiguration'> & { /** Child components */ children: ReactNode; }; /** * Provide the columns configuration to the table, through the ColumnParametersContext. * * It merges the column descriptors from the data frame with the user-provided configuration. */ export declare function ColumnParametersProvider({ columnConfiguration, children }: Props): import("react/jsx-runtime").JSX.Element; export {};