12345678910111213141516171819202122232425 |
- import { RouteMatchCallback, WorkboxPlugin } from 'workbox-core/types.js';
- import './_version.js';
- export interface ImageCacheOptions {
- cacheName?: string;
- matchCallback?: RouteMatchCallback;
- maxAgeSeconds?: number;
- maxEntries?: number;
- plugins?: Array<WorkboxPlugin>;
- warmCache?: Array<string>;
- }
- declare function imageCache(options?: ImageCacheOptions): void;
- export { imageCache };
|