source: frontend/node_modules/workbox-precaching/utils/createCacheKey.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 438 bytes
Line 
1import { PrecacheEntry } from '../_types.js';
2import '../_version.js';
3interface CacheKey {
4 cacheKey: string;
5 url: string;
6}
7/**
8 * Converts a manifest entry into a versioned URL suitable for precaching.
9 *
10 * @param {Object|string} entry
11 * @return {string} A URL with versioning info.
12 *
13 * @private
14 * @memberof workbox-precaching
15 */
16export declare function createCacheKey(entry: PrecacheEntry | string): CacheKey;
17export {};
Note: See TracBrowser for help on using the repository browser.