|
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:
479 bytes
|
| Line | |
|---|
| 1 | import { Strategy } from 'workbox-strategies/Strategy.js';
|
|---|
| 2 | import './_version.js';
|
|---|
| 3 | export interface WarmStrategyCacheOptions {
|
|---|
| 4 | urls: Array<string>;
|
|---|
| 5 | strategy: Strategy;
|
|---|
| 6 | }
|
|---|
| 7 | /**
|
|---|
| 8 | * @memberof workbox-recipes
|
|---|
| 9 |
|
|---|
| 10 | * @param {Object} options
|
|---|
| 11 | * @param {string[]} options.urls Paths to warm the strategy's cache with
|
|---|
| 12 | * @param {Strategy} options.strategy Strategy to use
|
|---|
| 13 | */
|
|---|
| 14 | declare function warmStrategyCache(options: WarmStrategyCacheOptions): void;
|
|---|
| 15 | export { warmStrategyCache };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.