UNPKG

window-table

Version:

Windowing Table for React based on React Window

6 lines (5 loc) 437 B
/// <reference types="react" /> import { WindowTableProps } from './types'; declare function WindowTable<T = any>({ columns, data, rowHeight, height, width, overscanCount, style, Cell, HeaderCell, Table, Header, HeaderRow, Row, Body, sampleRowIndex, sampleRow, className, rowClassName, classNamePrefix, debounceWait, ...rest }: WindowTableProps<T>): JSX.Element; declare const _default: typeof WindowTable; export default _default;