registerQuotaErrorCallback.d.ts 312 B

12345678910
  1. import './_version.js';
  2. /**
  3. * Adds a function to the set of quotaErrorCallbacks that will be executed if
  4. * there's a quota error.
  5. *
  6. * @param {Function} callback
  7. * @memberof module:workbox-core
  8. */
  9. declare function registerQuotaErrorCallback(callback: Function): void;
  10. export { registerQuotaErrorCallback };