skipWaiting.d.ts 329 B

12345678910
  1. import './_version.js';
  2. /**
  3. * Force a service worker to activate immediately, instead of
  4. * [waiting](https://developers.google.com/web/fundamentals/primers/service-workers/lifecycle#waiting)
  5. * for existing clients to close.
  6. *
  7. * @memberof module:workbox-core
  8. */
  9. declare function skipWaiting(): void;
  10. export { skipWaiting };