|
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 |
|
|---|
| 9 | import {registerQuotaErrorCallback} from './registerQuotaErrorCallback.js';
|
|---|
| 10 | import * as _private from './_private.js';
|
|---|
| 11 | import {cacheNames} from './cacheNames.js';
|
|---|
| 12 | import {copyResponse} from './copyResponse.js';
|
|---|
| 13 | import {clientsClaim} from './clientsClaim.js';
|
|---|
| 14 | import {setCacheNameDetails} from './setCacheNameDetails.js';
|
|---|
| 15 | import {skipWaiting} from './skipWaiting.js';
|
|---|
| 16 | import './_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 | */
|
|---|
| 25 | export {
|
|---|
| 26 | _private,
|
|---|
| 27 | cacheNames,
|
|---|
| 28 | clientsClaim,
|
|---|
| 29 | copyResponse,
|
|---|
| 30 | registerQuotaErrorCallback,
|
|---|
| 31 | setCacheNameDetails,
|
|---|
| 32 | skipWaiting,
|
|---|
| 33 | };
|
|---|
| 34 |
|
|---|
| 35 | export * from './types.js';
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.