v1.0 with SW PWA enabled
This commit is contained in:
28
frontend/node_modules/workbox-strategies/CacheFirst.d.ts
generated
vendored
Normal file
28
frontend/node_modules/workbox-strategies/CacheFirst.d.ts
generated
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
import { Strategy } from './Strategy.js';
|
||||
import { StrategyHandler } from './StrategyHandler.js';
|
||||
import './_version.js';
|
||||
/**
|
||||
* An implementation of a [cache-first](https://developer.chrome.com/docs/workbox/caching-strategies-overview/#cache-first-falling-back-to-network)
|
||||
* request strategy.
|
||||
*
|
||||
* A cache first strategy is useful for assets that have been revisioned,
|
||||
* such as URLs like `/styles/example.a8f5f1.css`, since they
|
||||
* can be cached for long periods of time.
|
||||
*
|
||||
* If the network request fails, and there is no cache match, this will throw
|
||||
* a `WorkboxError` exception.
|
||||
*
|
||||
* @extends workbox-strategies.Strategy
|
||||
* @memberof workbox-strategies
|
||||
*/
|
||||
declare class CacheFirst extends Strategy {
|
||||
/**
|
||||
* @private
|
||||
* @param {Request|string} request A request to run this strategy for.
|
||||
* @param {workbox-strategies.StrategyHandler} handler The event that
|
||||
* triggered the request.
|
||||
* @return {Promise<Response>}
|
||||
*/
|
||||
_handle(request: Request, handler: StrategyHandler): Promise<Response>;
|
||||
}
|
||||
export { CacheFirst };
|
||||
Reference in New Issue
Block a user