mirror of https://github.com/jkjoy/sunpeiwen.git
12 lines
758 B
TypeScript
12 lines
758 B
TypeScript
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, };
|