UNPKG

@indielayer/ui

Version:

Indielayer UI Components with Tailwind CSS build for Vue 3

7 lines (6 loc) 275 B
import type { CachedBounds, SizeFunction } from './types'; export declare function getEstimatedSize<Props extends object>({ cachedBounds, itemCount, itemSize, }: { cachedBounds: CachedBounds; itemCount: number; itemSize: number | SizeFunction<Props>; }): number;