Urara-Blog/node_modules/.pnpm-store/v3/files/6b/027ffb2d9af6cefcb2067b17f8c3d9211f3a8d253cd8ba98bb7e09fe7ae965335bccd0833f9ee52e08f91c7f7cc9ea736134dd44e4a088402ee86060c88189
2022-08-14 01:14:53 +08:00

15 lines
479 B
Text

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 };