Urara-Blog/node_modules/.pnpm-store/v3/files/85/7416364c56f292d7e8f8a718cb32adaf549d8ef5fd02fec438f689ba08181940a75f60f7b50cb55c5ef40fecba6471b9d27329da691eddfcd7aaa51be1c2dc
2022-08-14 01:14:53 +08:00

17 lines
617 B
Text

import { WorkboxPlugin } from 'workbox-core/types.js';
import { PrecacheController } from '../PrecacheController.js';
import '../_version.js';
/**
* A plugin, designed to be used with PrecacheController, to translate URLs into
* the corresponding cache key, based on the current revision info.
*
* @private
*/
declare class PrecacheCacheKeyPlugin implements WorkboxPlugin {
private readonly _precacheController;
constructor({ precacheController }: {
precacheController: PrecacheController;
});
cacheKeyWillBeUsed: WorkboxPlugin['cacheKeyWillBeUsed'];
}
export { PrecacheCacheKeyPlugin };