Urara-Blog/node_modules/.pnpm-store/v3/files/1f/f19ec068fcc2205de818be0790ddc27d087138e31a9b4738b5364d90c154fa37366d91877403f83296ff18ad85c2c9df90b062d8f279311c41d8c292326c25
2022-08-14 01:14:53 +08:00

24 lines
819 B
Text

import './_version.js';
/**
* Get the current cache names and prefix/suffix used by Workbox.
*
* `cacheNames.precache` is used for precached assets,
* `cacheNames.googleAnalytics` is used by `workbox-google-analytics` to
* store `analytics.js`, and `cacheNames.runtime` is used for everything else.
*
* `cacheNames.prefix` can be used to retrieve just the current prefix value.
* `cacheNames.suffix` can be used to retrieve just the current suffix value.
*
* @return {Object} An object with `precache`, `runtime`, `prefix`, and
* `googleAnalytics` properties.
*
* @memberof workbox-core
*/
declare const cacheNames: {
readonly googleAnalytics: string;
readonly precache: string;
readonly prefix: string;
readonly runtime: string;
readonly suffix: string;
};
export { cacheNames };