Urara-Blog/node_modules/.pnpm-store/v3/files/bd/0388e2a6efdb4dd2e0e3532fe8227edbbaab0e439b6b0ef8eeaf0d9998eb6f72aa71e8df2f544f11de950abe666cf780a68283179e0a137bd48e9dccbbe13c
2022-08-14 01:14:53 +08:00

15 lines
616 B
Text

import '../_version.js';
/**
* Matches an item in the cache, ignoring specific URL params. This is similar
* to the `ignoreSearch` option, but it allows you to ignore just specific
* params (while continuing to match on the others).
*
* @private
* @param {Cache} cache
* @param {Request} request
* @param {Object} matchOptions
* @param {Array<string>} ignoreParams
* @return {Promise<Response|undefined>}
*/
declare function cacheMatchIgnoreParams(cache: Cache, request: Request, ignoreParams: string[], matchOptions?: CacheQueryOptions): Promise<Response | undefined>;
export { cacheMatchIgnoreParams };