source: frontend/node_modules/workbox-core/src/index.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: 940 bytes
Line 
1/*
2 Copyright 2018 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 {registerQuotaErrorCallback} from './registerQuotaErrorCallback.js';
10import * as _private from './_private.js';
11import {cacheNames} from './cacheNames.js';
12import {copyResponse} from './copyResponse.js';
13import {clientsClaim} from './clientsClaim.js';
14import {setCacheNameDetails} from './setCacheNameDetails.js';
15import {skipWaiting} from './skipWaiting.js';
16import './_version.js';
17
18/**
19 * All of the Workbox service worker libraries use workbox-core for shared
20 * code as well as setting default values that need to be shared (like cache
21 * names).
22 *
23 * @module workbox-core
24 */
25export {
26 _private,
27 cacheNames,
28 clientsClaim,
29 copyResponse,
30 registerQuotaErrorCallback,
31 setCacheNameDetails,
32 skipWaiting,
33};
34
35export * from './types.js';
Note: See TracBrowser for help on using the repository browser.