Urara-Blog/node_modules/.pnpm-store/v3/files/fc/e4d06e949cb59e842ede445213eb31e4b9e4bbdbf902981bd52126e5e0ca4c1811b1d671d4e4adbf6a210a8e17f8a0247407588111face7dabf7a11ae8423f
2022-08-14 01:14:53 +08:00

18 lines
633 B
Text

import './_version.js';
/**
* Helper function that calls
* {@link PrecacheController#matchPrecache} on the default
* {@link PrecacheController} instance.
*
* If you are creating your own {@link PrecacheController}, then call
* {@link PrecacheController#matchPrecache} on that instance,
* instead of using this function.
*
* @param {string|Request} request The key (without revisioning parameters)
* to look up in the precache.
* @return {Promise<Response|undefined>}
*
* @memberof workbox-precaching
*/
declare function matchPrecache(request: string | Request): Promise<Response | undefined>;
export { matchPrecache };