UNPKG

@oceanbase-odc/ob-react-data-grid

Version:

Excel-like grid component built with React, with editors, keyboard navigation, copy & paste, and the like

12 lines 491 B
import type { RowRendererProps } from './types'; type SharedRowRendererProps<R, SR> = Pick<RowRendererProps<R, SR>, 'viewportColumns' | 'rowIdx'>; interface SummaryRowProps<R, SR> extends SharedRowRendererProps<R, SR> { 'aria-rowindex': number; row: SR; top: number; lastFrozenColumnIndex: number; isLastSummaryRow: boolean; } declare const _default: <R, SR>(props: SummaryRowProps<R, SR>) => JSX.Element; export default _default; //# sourceMappingURL=SummaryRow.d.ts.map