hightable
Version:
A dynamic windowed scrolling table component for react
12 lines (11 loc) • 433 B
TypeScript
import { type ReactNode } from 'react';
import type { HighTableProps } from '../types.js';
type ScrollProviderProps = Pick<HighTableProps, 'padding'> & {
/** Child components */
children: ReactNode;
};
/**
* Provide the scroll state and logic to the table, through the ScrollContext.
*/
export declare function ScrollProvider({ children, padding }: ScrollProviderProps): import("react/jsx-runtime").JSX.Element;
export {};