12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*
- Copyright 2018 Google LLC
- Use of this source code is governed by an MIT-style
- license that can be found in the LICENSE file or at
- https://opensource.org/licenses/MIT.
- */
- import {registerQuotaErrorCallback} from './registerQuotaErrorCallback.mjs';
- import * as _private from './_private.mjs';
- import {clientsClaim} from './clientsClaim.mjs';
- import {cacheNames} from './cacheNames.mjs';
- import {setCacheNameDetails} from './setCacheNameDetails.mjs';
- import {skipWaiting} from './skipWaiting.mjs';
- import './_version.mjs';
- // Give our version strings something to hang off of.
- try {
- self.workbox.v = self.workbox.v || {};
- } catch (errer) {
- // NOOP
- }
- /**
- * All of the Workbox service worker libraries use workbox-core for shared
- * code as well as setting default values that need to be shared (like cache
- * names).
- *
- * @namespace workbox.core
- */
- export {
- _private,
- clientsClaim,
- cacheNames,
- registerQuotaErrorCallback,
- setCacheNameDetails,
- skipWaiting,
- };
|