UNPKG

@indielayer/ui

Version:

Indielayer UI Components with Tailwind CSS build for Vue 3

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