Urara-Blog/node_modules/.pnpm-store/v3/files/7e/938f1a733c8f410cea3e0ea60959dd642b2d0bd577fc61716cb9e730343e01554cfe3f141bbb5195231c7de65f1ceeeaa156791248b2368d7ff3d1cde29db4
2022-08-14 01:14:53 +08:00

15 lines
550 B
Text

import { WorkboxPlugin } from 'workbox-core/types.js';
import '../_version.js';
/**
* A plugin, designed to be used with PrecacheController, to determine the
* of assets that were updated (or not updated) during the install event.
*
* @private
*/
declare class PrecacheInstallReportPlugin implements WorkboxPlugin {
updatedURLs: string[];
notUpdatedURLs: string[];
handlerWillStart: WorkboxPlugin['handlerWillStart'];
cachedResponseWillBeUsed: WorkboxPlugin['cachedResponseWillBeUsed'];
}
export { PrecacheInstallReportPlugin };