Frontend/25_01_07/mai/node_modules/workbox-recipes/warmStrategyCache.d.ts

16 lines
479 B
TypeScript
Raw Permalink Normal View History

2025-01-28 10:38:27 +00:00
import { Strategy } from 'workbox-strategies/Strategy.js';
import './_version.js';
export interface WarmStrategyCacheOptions {
urls: Array<string>;
strategy: Strategy;
}
/**
* @memberof workbox-recipes
* @param {Object} options
* @param {string[]} options.urls Paths to warm the strategy's cache with
* @param {Strategy} options.strategy Strategy to use
*/
declare function warmStrategyCache(options: WarmStrategyCacheOptions): void;
export { warmStrategyCache };