source: frontend/node_modules/workbox-precaching/utils/PrecacheInstallReportPlugin.d.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: 550 bytes
Line 
1import { WorkboxPlugin } from 'workbox-core/types.js';
2import '../_version.js';
3/**
4 * A plugin, designed to be used with PrecacheController, to determine the
5 * of assets that were updated (or not updated) during the install event.
6 *
7 * @private
8 */
9declare class PrecacheInstallReportPlugin implements WorkboxPlugin {
10 updatedURLs: string[];
11 notUpdatedURLs: string[];
12 handlerWillStart: WorkboxPlugin['handlerWillStart'];
13 cachedResponseWillBeUsed: WorkboxPlugin['cachedResponseWillBeUsed'];
14}
15export { PrecacheInstallReportPlugin };
Note: See TracBrowser for help on using the repository browser.