register
inline suspend fun ServiceWorkerContainer.register(scriptURL: TrustedScriptURL): ServiceWorkerRegistration(source)
inline suspend fun ServiceWorkerContainer.register(scriptURL: TrustedScriptURL, options: RegistrationOptions): ServiceWorkerRegistration(source)
The register() method of the ServiceWorkerContainer interface creates or updates a ServiceWorkerRegistration for the given scope.
inline suspend fun ServiceWorkerContainer.register(scriptURL: String): ServiceWorkerRegistration(source)
inline suspend fun ServiceWorkerContainer.register(scriptURL: String, options: RegistrationOptions): ServiceWorkerRegistration(source)
inline suspend fun ServiceWorkerContainer.register(scriptURL: URL): ServiceWorkerRegistration(source)
inline suspend fun ServiceWorkerContainer.register(scriptURL: URL, options: RegistrationOptions): ServiceWorkerRegistration(source)
inline suspend fun ServiceWorkerContainer.register(module: ServiceWorkerModule): ServiceWorkerRegistration(source)
inline suspend fun ServiceWorkerContainer.register(module: ServiceWorkerModule, options: RegistrationOptions): ServiceWorkerRegistration(source)