source: frontend/node_modules/workbox-recipes/src/index.ts

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

Fix frontend appearance

  • Property mode set to 100644
File size: 952 bytes
Line 
1/*
2 Copyright 2020 Google LLC
3
4 Use of this source code is governed by an MIT-style
5 license that can be found in the LICENSE file or at
6 https://opensource.org/licenses/MIT.
7*/
8
9import {googleFontsCache, GoogleFontCacheOptions} from './googleFontsCache';
10import {imageCache, ImageCacheOptions} from './imageCache';
11import {
12 staticResourceCache,
13 StaticResourceOptions,
14} from './staticResourceCache';
15import {pageCache, PageCacheOptions} from './pageCache';
16import {offlineFallback, OfflineFallbackOptions} from './offlineFallback';
17import {warmStrategyCache, WarmStrategyCacheOptions} from './warmStrategyCache';
18
19import './_version.js';
20
21/**
22 * @module workbox-recipes
23 */
24
25export {
26 GoogleFontCacheOptions,
27 googleFontsCache,
28 imageCache,
29 ImageCacheOptions,
30 offlineFallback,
31 OfflineFallbackOptions,
32 pageCache,
33 PageCacheOptions,
34 staticResourceCache,
35 StaticResourceOptions,
36 warmStrategyCache,
37 WarmStrategyCacheOptions,
38};
Note: See TracBrowser for help on using the repository browser.