We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ServiceWorkerRegistration.update()
Promise<ServiceWorkerRegistration>
Currently it is defined in lib.dom.ts to return Promise<void>.
Promise<void>
See the MDN page for update() which mentions:
Return value A Promise that resolves with a ServiceWorkerRegistration object.
The spec is a bit unclear because it mentions some job logic:
Let job be the result of running Create Job with update
but in the end it seems like this promise is always resolved with a ServiceWorkerRegistration.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently it is defined in lib.dom.ts to return
Promise<void>
.See the MDN page for update() which mentions:
The spec is a bit unclear because it mentions some job logic:
but in the end it seems like this promise is always resolved with a ServiceWorkerRegistration.
The text was updated successfully, but these errors were encountered: