12345678910111213141516171819202122232425262728 |
- import { PrecacheEntry } from './_types.js';
- import './_version.js';
- declare global {
- interface WorkerGlobalScope {
- __WB_MANIFEST: Array<PrecacheEntry | string>;
- }
- }
- declare function precache(entries: Array<PrecacheEntry | string>): void;
- export { precache };
|