UNPKG

483 BTypeScriptView Raw
1import { PrecacheRouteOptions } from '../_types.js';
2import '../_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 workbox-precaching
12 */
13export declare function generateURLVariations(url: string, { ignoreURLParametersMatching, directoryIndex, cleanURLs, urlManipulation, }?: PrecacheRouteOptions): Generator<string, void, unknown>;