You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Provides a storage mechanism for Request / Response object pairs that are cached, for example as part of the ServiceWorker life cycle. Note that the Cache interface is exposed to windowed scopes as well as workers. You don't have to use it in conjunction with service workers, even though it is defined in the service worker spec. */
744
+
/**
745
+
* Provides a storage mechanism for Request / Response object pairs that are cached, for example as part of the ServiceWorker life cycle. Note that the Cache interface is exposed to windowed scopes as well as workers. You don't have to use it in conjunction with service workers, even though it is defined in the service worker spec.
746
+
* Available only in secure contexts.
747
+
*/
745
748
interfaceCache{
746
749
add(request: RequestInfo): Promise<void>;
747
750
addAll(requests: RequestInfo[]): Promise<void>;
@@ -757,7 +760,10 @@ declare var Cache: {
757
760
new(): Cache;
758
761
};
759
762
760
-
/** The storage for Cache objects. */
763
+
/**
764
+
* The storage for Cache objects.
765
+
* Available only in secure contexts.
766
+
*/
761
767
interfaceCacheStorage{
762
768
delete(cacheName: string): Promise<boolean>;
763
769
has(cacheName: string): Promise<boolean>;
@@ -865,6 +871,7 @@ declare var CountQueuingStrategy: {
865
871
866
872
/** Basic cryptography features available in the current context. It allows access to a cryptographically strong random number generator and to cryptographic primitives. */
/** This Push API interface represents a push message that has been received. This event is sent to the global scope of a ServiceWorker. It contains the information sent from an application server to a PushSubscription. */
2393
+
/**
2394
+
* This Push API interface represents a push message that has been received. This event is sent to the global scope of a ServiceWorker. It contains the information sent from an application server to a PushSubscription.
/** This ServiceWorker API interface provides a reference to a service worker. Multiple browsing contexts (e.g. pages, workers, etc.) can be associated with the same service worker, each through a unique ServiceWorker object. */
2587
+
/**
2588
+
* This ServiceWorker API interface provides a reference to a service worker. Multiple browsing contexts (e.g. pages, workers, etc.) can be associated with the same service worker, each through a unique ServiceWorker object.
/** The ServiceWorkerContainer interface of the ServiceWorker API provides an object representing the service worker as an overall unit in the network ecosystem, including facilities to register, unregister and update service workers, and access the state of service workers and their registrations. */
2614
+
/**
2615
+
* The ServiceWorkerContainer interface of the ServiceWorker API provides an object representing the service worker as an overall unit in the network ecosystem, including facilities to register, unregister and update service workers, and access the state of service workers and their registrations.
/** This ServiceWorker API interface represents the service worker registration. You register a service worker to control one or more pages that share the same origin. */
2678
+
/**
2679
+
* This ServiceWorker API interface represents the service worker registration. You register a service worker to control one or more pages that share the same origin.
@@ -2669,6 +2702,7 @@ declare var ServiceWorkerRegistration: {
2669
2702
new(): ServiceWorkerRegistration;
2670
2703
};
2671
2704
2705
+
/** Available only in secure contexts. */
2672
2706
interfaceStorageManager{
2673
2707
estimate(): Promise<StorageEstimate>;
2674
2708
persisted(): Promise<boolean>;
@@ -2679,7 +2713,10 @@ declare var StorageManager: {
2679
2713
new(): StorageManager;
2680
2714
};
2681
2715
2682
-
/** This Web Crypto API interface provides a number of low-level cryptographic functions. It is accessed via the Crypto.subtle properties available in a window context (via Window.crypto). */
2716
+
/**
2717
+
* This Web Crypto API interface provides a number of low-level cryptographic functions. It is accessed via the Crypto.subtle properties available in a window context (via Window.crypto).
/** Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise. */
/** Provides a storage mechanism for Request / Response object pairs that are cached, for example as part of the ServiceWorker life cycle. Note that the Cache interface is exposed to windowed scopes as well as workers. You don't have to use it in conjunction with service workers, even though it is defined in the service worker spec. */
716
+
/**
717
+
* Provides a storage mechanism for Request / Response object pairs that are cached, for example as part of the ServiceWorker life cycle. Note that the Cache interface is exposed to windowed scopes as well as workers. You don't have to use it in conjunction with service workers, even though it is defined in the service worker spec.
718
+
* Available only in secure contexts.
719
+
*/
717
720
interfaceCache{
718
721
add(request: RequestInfo): Promise<void>;
719
722
addAll(requests: RequestInfo[]): Promise<void>;
@@ -729,7 +732,10 @@ declare var Cache: {
729
732
new(): Cache;
730
733
};
731
734
732
-
/** The storage for Cache objects. */
735
+
/**
736
+
* The storage for Cache objects.
737
+
* Available only in secure contexts.
738
+
*/
733
739
interfaceCacheStorage{
734
740
delete(cacheName: string): Promise<boolean>;
735
741
has(cacheName: string): Promise<boolean>;
@@ -809,6 +815,7 @@ declare var CountQueuingStrategy: {
809
815
810
816
/** Basic cryptography features available in the current context. It allows access to a cryptographically strong random number generator and to cryptographic primitives. */
/** This ServiceWorker API interface provides a reference to a service worker. Multiple browsing contexts (e.g. pages, workers, etc.) can be associated with the same service worker, each through a unique ServiceWorker object. */
2467
+
/**
2468
+
* This ServiceWorker API interface provides a reference to a service worker. Multiple browsing contexts (e.g. pages, workers, etc.) can be associated with the same service worker, each through a unique ServiceWorker object.
/** The ServiceWorkerContainer interface of the ServiceWorker API provides an object representing the service worker as an overall unit in the network ecosystem, including facilities to register, unregister and update service workers, and access the state of service workers and their registrations. */
2494
+
/**
2495
+
* The ServiceWorkerContainer interface of the ServiceWorker API provides an object representing the service worker as an overall unit in the network ecosystem, including facilities to register, unregister and update service workers, and access the state of service workers and their registrations.
/** This ServiceWorker API interface represents the service worker registration. You register a service worker to control one or more pages that share the same origin. */
2523
+
/**
2524
+
* This ServiceWorker API interface represents the service worker registration. You register a service worker to control one or more pages that share the same origin.
@@ -2541,6 +2568,7 @@ declare var SharedWorkerGlobalScope: {
2541
2568
new(): SharedWorkerGlobalScope;
2542
2569
};
2543
2570
2571
+
/** Available only in secure contexts. */
2544
2572
interfaceStorageManager{
2545
2573
estimate(): Promise<StorageEstimate>;
2546
2574
persisted(): Promise<boolean>;
@@ -2551,7 +2579,10 @@ declare var StorageManager: {
2551
2579
new(): StorageManager;
2552
2580
};
2553
2581
2554
-
/** This Web Crypto API interface provides a number of low-level cryptographic functions. It is accessed via the Crypto.subtle properties available in a window context (via Window.crypto). */
2582
+
/**
2583
+
* This Web Crypto API interface provides a number of low-level cryptographic functions. It is accessed via the Crypto.subtle properties available in a window context (via Window.crypto).
/** Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise. */
0 commit comments