UNPKG

siegel

Version:

Web application development ecosystem

11 lines (10 loc) 397 B
import { SlideWindowRange } from '../helpers/apply_virtualization'; import type { TableBodyRow } from '../../Table/types'; import type { MergedProps, State } from '../types'; declare function getBody(props: MergedProps, state: State, slideWindowRange: SlideWindowRange | undefined): { from: number; to: number; resultIDs: string[]; body: TableBodyRow[]; }; export default getBody;