source: frontend/node_modules/workbox-strategies/index.d.ts

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

Fix frontend appearance

  • Property mode set to 100644
File size: 896 bytes
Line 
1import { CacheFirst } from './CacheFirst.js';
2import { CacheOnly } from './CacheOnly.js';
3import { NetworkFirst, NetworkFirstOptions } from './NetworkFirst.js';
4import { NetworkOnly, NetworkOnlyOptions } from './NetworkOnly.js';
5import { StaleWhileRevalidate } from './StaleWhileRevalidate.js';
6import { Strategy, StrategyOptions } from './Strategy.js';
7import { StrategyHandler } from './StrategyHandler.js';
8import './_version.js';
9declare global {
10 interface FetchEvent {
11 readonly preloadResponse: Promise<any>;
12 }
13}
14/**
15 * There are common caching strategies that most service workers will need
16 * and use. This module provides simple implementations of these strategies.
17 *
18 * @module workbox-strategies
19 */
20export { CacheFirst, CacheOnly, NetworkFirst, NetworkFirstOptions, NetworkOnly, NetworkOnlyOptions, StaleWhileRevalidate, Strategy, StrategyHandler, StrategyOptions, };
Note: See TracBrowser for help on using the repository browser.