source: frontend/node_modules/workbox-recipes/warmStrategyCache.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 479 bytes
Line 
1import { Strategy } from 'workbox-strategies/Strategy.js';
2import './_version.js';
3export interface WarmStrategyCacheOptions {
4 urls: Array<string>;
5 strategy: Strategy;
6}
7/**
8 * @memberof workbox-recipes
9
10 * @param {Object} options
11 * @param {string[]} options.urls Paths to warm the strategy's cache with
12 * @param {Strategy} options.strategy Strategy to use
13 */
14declare function warmStrategyCache(options: WarmStrategyCacheOptions): void;
15export { warmStrategyCache };
Note: See TracBrowser for help on using the repository browser.