source: frontend/node_modules/workbox-precaching/precache.d.ts

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

Fix frontend appearance

  • Property mode set to 100644
File size: 826 bytes
Line 
1import { PrecacheEntry } from './_types.js';
2import './_version.js';
3/**
4 * Adds items to the precache list, removing any duplicates and
5 * stores the files in the
6 * {@link workbox-core.cacheNames|"precache cache"} when the service
7 * worker installs.
8 *
9 * This method can be called multiple times.
10 *
11 * Please note: This method **will not** serve any of the cached files for you.
12 * It only precaches files. To respond to a network request you call
13 * {@link workbox-precaching.addRoute}.
14 *
15 * If you have a single array of files to precache, you can just call
16 * {@link workbox-precaching.precacheAndRoute}.
17 *
18 * @param {Array<Object|string>} [entries=[]] Array of entries to precache.
19 *
20 * @memberof workbox-precaching
21 */
22declare function precache(entries: Array<PrecacheEntry | string>): void;
23export { precache };
Note: See TracBrowser for help on using the repository browser.