UNPKG

hightable

Version:

A dynamic windowed scrolling table component for react

5 lines (4 loc) 426 B
import type { HighTableProps } from '../../types.js'; type SliceProps = Pick<HighTableProps, 'onDoubleClickCell' | 'onError' | 'onKeyDownCell' | 'onMouseDownCell' | 'overscan' | 'renderCellContent' | 'stringify'>; export default function Slice({ overscan, onDoubleClickCell, onError, onKeyDownCell, onMouseDownCell, renderCellContent, stringify, }: SliceProps): import("react/jsx-runtime").JSX.Element | undefined; export {};