generateURLVariations.d.ts 499 B

12345678910111213
  1. import { FetchListenerOptions } from './addFetchListener.js';
  2. import '../_version.js';
  3. /**
  4. * Generator function that yields possible variations on the original URL to
  5. * check, one at a time.
  6. *
  7. * @param {string} url
  8. * @param {Object} options
  9. *
  10. * @private
  11. * @memberof module:workbox-precaching
  12. */
  13. export declare function generateURLVariations(url: string, { ignoreURLParametersMatching, directoryIndex, cleanURLs, urlManipulation, }?: FetchListenerOptions): Generator<string, void, unknown>;