siegel
Version:
Web application development ecosystem
11 lines (10 loc) • 524 B
TypeScript
import type { SlideWindowRange, GetExpanderRow, UseVirtualizationParams } from './apply_virtualization_types';
declare const getExpanderRow: GetExpanderRow;
declare function applyVirtualization(params: UseVirtualizationParams): {
slideWindowRange: SlideWindowRange;
maxItemsCount: number;
useVirtualizationScrolling: (newMaxItemsCount: number) => void;
onScrollHandler: (e: React.UIEvent<HTMLDivElement, UIEvent>) => void;
};
export { applyVirtualization, getExpanderRow };
export type { SlideWindowRange };