123456789101112131415161718192021222324252627282930313233343536 |
- import { WorkboxPlugin } from 'workbox-core/types.js';
- import { CacheableResponseOptions } from './CacheableResponse.js';
- import './_version.js';
- declare class CacheableResponsePlugin implements WorkboxPlugin {
- private readonly _cacheableResponse;
-
- constructor(config: CacheableResponseOptions);
- /**
- * @param {Object} options
- * @param {Response} options.response
- * @return {Response|null}
- * @private
- */
- cacheWillUpdate: WorkboxPlugin['cacheWillUpdate'];
- }
- export { CacheableResponsePlugin };
|