UNPKG

cozy-iiif

Version:

A developer-friendly collection of abstractions and utilities built on top of @iiif/presentation-3 and @iiif/parser

8 lines (7 loc) 251 B
interface ThrottledLoaderOpts { callsPerSecond?: number; } export declare const getThrottledLoader: (opts?: ThrottledLoaderOpts) => { loadImage: import('p-throttle').ThrottledFunction<(url: string) => Promise<HTMLImageElement>>; }; export {};