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.
12 lines
747 B
12 lines
747 B
2 years ago
|
import { googleFontsCache, GoogleFontCacheOptions } from './googleFontsCache';
|
||
|
import { imageCache, ImageCacheOptions } from './imageCache';
|
||
|
import { staticResourceCache, StaticResourceOptions } from './staticResourceCache';
|
||
|
import { pageCache, PageCacheOptions } from './pageCache';
|
||
|
import { offlineFallback, OfflineFallbackOptions } from './offlineFallback';
|
||
|
import { warmStrategyCache, WarmStrategyCacheOptions } from './warmStrategyCache';
|
||
|
import './_version.js';
|
||
|
/**
|
||
|
* @module workbox-recipes
|
||
|
*/
|
||
|
export { GoogleFontCacheOptions, googleFontsCache, imageCache, ImageCacheOptions, offlineFallback, OfflineFallbackOptions, pageCache, PageCacheOptions, staticResourceCache, StaticResourceOptions, warmStrategyCache, WarmStrategyCacheOptions, };
|