UNPKG

siegel

Version:

Web application development ecosystem

11 lines (10 loc) 402 B
import type { TableBodyRow } from '../../Table/types'; import type { SlideWindowRange } from '../helpers/apply_virtualization'; 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;