source: frontend/node_modules/workbox-precaching/utils/deleteOutdatedCaches.d.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: 925 bytes
Line 
1import '../_version.js';
2/**
3 * Cleans up incompatible precaches that were created by older versions of
4 * Workbox, by a service worker registered under the current scope.
5 *
6 * This is meant to be called as part of the `activate` event.
7 *
8 * This should be safe to use as long as you don't include `substringToFind`
9 * (defaulting to `-precache-`) in your non-precache cache names.
10 *
11 * @param {string} currentPrecacheName The cache name currently in use for
12 * precaching. This cache won't be deleted.
13 * @param {string} [substringToFind='-precache-'] Cache names which include this
14 * substring will be deleted (excluding `currentPrecacheName`).
15 * @return {Array<string>} A list of all the cache names that were deleted.
16 *
17 * @private
18 * @memberof workbox-precaching
19 */
20declare const deleteOutdatedCaches: (currentPrecacheName: string, substringToFind?: string) => Promise<string[]>;
21export { deleteOutdatedCaches };
Note: See TracBrowser for help on using the repository browser.