web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
499 B

  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>;