index.d.ts 555 B

12345678910111213
  1. import { CacheFirst } from './CacheFirst.js';
  2. import { CacheOnly } from './CacheOnly.js';
  3. import { NetworkFirst } from './NetworkFirst.js';
  4. import { NetworkOnly } from './NetworkOnly.js';
  5. import { StaleWhileRevalidate } from './StaleWhileRevalidate.js';
  6. import './_version.js';
  7. /**
  8. * There are common caching strategies that most service workers will need
  9. * and use. This module provides simple implementations of these strategies.
  10. *
  11. * @module workbox-strategies
  12. */
  13. export { CacheFirst, CacheOnly, NetworkFirst, NetworkOnly, StaleWhileRevalidate, };