@@ -24452,7 +24452,7 @@ ServiceWorkerContainer[JT] def getRegistrations(): js.Promise[js.Array[ServiceWo
24452
24452
ServiceWorkerContainer[JT] var oncontrollerchange: js.Function1[Event, _]
24453
24453
ServiceWorkerContainer[JT] var onmessage: js.Function1[MessageEvent, _]
24454
24454
ServiceWorkerContainer[JT] def ready: js.Promise[ServiceWorkerRegistration]
24455
- ServiceWorkerContainer[JT] def register(scriptURL: String, options: js.Object ?): js.Promise[ServiceWorkerRegistration]
24455
+ ServiceWorkerContainer[JT] def register(scriptURL: String, options: ServiceWorkerRegistrationOptions ?): js.Promise[ServiceWorkerRegistration]
24456
24456
ServiceWorkerContainer[JT] def removeEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit
24457
24457
ServiceWorkerContainer[JT] def removeEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit
24458
24458
ServiceWorkerGlobalScope[JO] def self: ServiceWorkerGlobalScope
@@ -24520,12 +24520,19 @@ ServiceWorkerRegistration[JT] def showNotification(title: String, options: Notif
24520
24520
ServiceWorkerRegistration[JT] def unregister(): js.Promise[Boolean]
24521
24521
ServiceWorkerRegistration[JT] def update(): js.Promise[Unit]
24522
24522
ServiceWorkerRegistration[JT] var waiting: ServiceWorker
24523
+ ServiceWorkerRegistrationOptions[JT] var scope: js.UndefOr[String]
24524
+ ServiceWorkerRegistrationOptions[JT] var `type`: js.UndefOr[WorkerType]
24525
+ ServiceWorkerRegistrationOptions[JT] var updateViaCache: js.UndefOr[ServiceWorkerUpdateViaCache]
24523
24526
ServiceWorkerState[JT]
24524
24527
ServiceWorkerState[SO] val activated: ServiceWorkerState
24525
24528
ServiceWorkerState[SO] val activating: ServiceWorkerState
24526
24529
ServiceWorkerState[SO] val installed: ServiceWorkerState
24527
24530
ServiceWorkerState[SO] val installing: ServiceWorkerState
24528
24531
ServiceWorkerState[SO] val redundant: ServiceWorkerState
24532
+ ServiceWorkerUpdateViaCache[JT]
24533
+ ServiceWorkerUpdateViaCache[SO] val all: ServiceWorkerUpdateViaCache
24534
+ ServiceWorkerUpdateViaCache[SO] val imports: ServiceWorkerUpdateViaCache
24535
+ ServiceWorkerUpdateViaCache[SO] val none: ServiceWorkerUpdateViaCache
24529
24536
ShadowRoot[JC] def activeElement: Element
24530
24537
ShadowRoot[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit
24531
24538
ShadowRoot[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit
0 commit comments