@types/serviceworker 0.0.63 → 0.0.65

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -28,4 +28,4 @@ This project does not respect semantic versioning as almost every change could p
28
28
 
29
29
  ## Deploy Metadata
30
30
 
31
- You can read what changed in version 0.0.63 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.63.
31
+ You can read what changed in version 0.0.65 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.65.
package/index.d.ts CHANGED
@@ -54,6 +54,21 @@ interface BlobPropertyBag {
54
54
  type?: string;
55
55
  }
56
56
 
57
+ interface CSSMatrixComponentOptions {
58
+ is2D?: boolean;
59
+ }
60
+
61
+ interface CSSNumericType {
62
+ angle?: number;
63
+ flex?: number;
64
+ frequency?: number;
65
+ length?: number;
66
+ percent?: number;
67
+ percentHint?: CSSNumericBaseType;
68
+ resolution?: number;
69
+ time?: number;
70
+ }
71
+
57
72
  interface CacheQueryOptions {
58
73
  ignoreMethod?: boolean;
59
74
  ignoreSearch?: boolean;
@@ -509,6 +524,11 @@ interface RegistrationOptions {
509
524
  updateViaCache?: ServiceWorkerUpdateViaCache;
510
525
  }
511
526
 
527
+ interface ReportingObserverOptions {
528
+ buffered?: boolean;
529
+ types?: string[];
530
+ }
531
+
512
532
  interface RequestInit {
513
533
  /** A BodyInit object or null to set request's body. */
514
534
  body?: BodyInit | null;
@@ -818,6 +838,271 @@ declare var ByteLengthQueuingStrategy: {
818
838
  new(init: QueuingStrategyInit): ByteLengthQueuingStrategy;
819
839
  };
820
840
 
841
+ interface CSSImageValue extends CSSStyleValue {
842
+ }
843
+
844
+ declare var CSSImageValue: {
845
+ prototype: CSSImageValue;
846
+ new(): CSSImageValue;
847
+ };
848
+
849
+ interface CSSKeywordValue extends CSSStyleValue {
850
+ value: string;
851
+ }
852
+
853
+ declare var CSSKeywordValue: {
854
+ prototype: CSSKeywordValue;
855
+ new(value: string): CSSKeywordValue;
856
+ };
857
+
858
+ interface CSSMathClamp extends CSSMathValue {
859
+ readonly lower: CSSNumericValue;
860
+ readonly upper: CSSNumericValue;
861
+ readonly value: CSSNumericValue;
862
+ }
863
+
864
+ declare var CSSMathClamp: {
865
+ prototype: CSSMathClamp;
866
+ new(lower: CSSNumberish, value: CSSNumberish, upper: CSSNumberish): CSSMathClamp;
867
+ };
868
+
869
+ interface CSSMathInvert extends CSSMathValue {
870
+ readonly value: CSSNumericValue;
871
+ }
872
+
873
+ declare var CSSMathInvert: {
874
+ prototype: CSSMathInvert;
875
+ new(arg: CSSNumberish): CSSMathInvert;
876
+ };
877
+
878
+ interface CSSMathMax extends CSSMathValue {
879
+ readonly values: CSSNumericArray;
880
+ }
881
+
882
+ declare var CSSMathMax: {
883
+ prototype: CSSMathMax;
884
+ new(...args: CSSNumberish[]): CSSMathMax;
885
+ };
886
+
887
+ interface CSSMathMin extends CSSMathValue {
888
+ readonly values: CSSNumericArray;
889
+ }
890
+
891
+ declare var CSSMathMin: {
892
+ prototype: CSSMathMin;
893
+ new(...args: CSSNumberish[]): CSSMathMin;
894
+ };
895
+
896
+ interface CSSMathNegate extends CSSMathValue {
897
+ readonly value: CSSNumericValue;
898
+ }
899
+
900
+ declare var CSSMathNegate: {
901
+ prototype: CSSMathNegate;
902
+ new(arg: CSSNumberish): CSSMathNegate;
903
+ };
904
+
905
+ interface CSSMathProduct extends CSSMathValue {
906
+ readonly values: CSSNumericArray;
907
+ }
908
+
909
+ declare var CSSMathProduct: {
910
+ prototype: CSSMathProduct;
911
+ new(...args: CSSNumberish[]): CSSMathProduct;
912
+ };
913
+
914
+ interface CSSMathSum extends CSSMathValue {
915
+ readonly values: CSSNumericArray;
916
+ }
917
+
918
+ declare var CSSMathSum: {
919
+ prototype: CSSMathSum;
920
+ new(...args: CSSNumberish[]): CSSMathSum;
921
+ };
922
+
923
+ interface CSSMathValue extends CSSNumericValue {
924
+ readonly operator: CSSMathOperator;
925
+ }
926
+
927
+ declare var CSSMathValue: {
928
+ prototype: CSSMathValue;
929
+ new(): CSSMathValue;
930
+ };
931
+
932
+ interface CSSMatrixComponent extends CSSTransformComponent {
933
+ matrix: DOMMatrix;
934
+ }
935
+
936
+ declare var CSSMatrixComponent: {
937
+ prototype: CSSMatrixComponent;
938
+ new(matrix: DOMMatrixReadOnly, options?: CSSMatrixComponentOptions): CSSMatrixComponent;
939
+ };
940
+
941
+ interface CSSNumericArray {
942
+ readonly length: number;
943
+ forEach(callbackfn: (value: CSSNumericValue, key: number, parent: CSSNumericArray) => void, thisArg?: any): void;
944
+ [index: number]: CSSNumericValue;
945
+ }
946
+
947
+ declare var CSSNumericArray: {
948
+ prototype: CSSNumericArray;
949
+ new(): CSSNumericArray;
950
+ };
951
+
952
+ interface CSSNumericValue extends CSSStyleValue {
953
+ add(...values: CSSNumberish[]): CSSNumericValue;
954
+ div(...values: CSSNumberish[]): CSSNumericValue;
955
+ equals(...value: CSSNumberish[]): boolean;
956
+ max(...values: CSSNumberish[]): CSSNumericValue;
957
+ min(...values: CSSNumberish[]): CSSNumericValue;
958
+ mul(...values: CSSNumberish[]): CSSNumericValue;
959
+ sub(...values: CSSNumberish[]): CSSNumericValue;
960
+ to(unit: string): CSSUnitValue;
961
+ toSum(...units: string[]): CSSMathSum;
962
+ type(): CSSNumericType;
963
+ }
964
+
965
+ declare var CSSNumericValue: {
966
+ prototype: CSSNumericValue;
967
+ new(): CSSNumericValue;
968
+ };
969
+
970
+ interface CSSPerspective extends CSSTransformComponent {
971
+ length: CSSPerspectiveValue;
972
+ }
973
+
974
+ declare var CSSPerspective: {
975
+ prototype: CSSPerspective;
976
+ new(length: CSSPerspectiveValue): CSSPerspective;
977
+ };
978
+
979
+ interface CSSRotate extends CSSTransformComponent {
980
+ angle: CSSNumericValue;
981
+ x: CSSNumberish;
982
+ y: CSSNumberish;
983
+ z: CSSNumberish;
984
+ }
985
+
986
+ declare var CSSRotate: {
987
+ prototype: CSSRotate;
988
+ new(angle: CSSNumericValue): CSSRotate;
989
+ new(x: CSSNumberish, y: CSSNumberish, z: CSSNumberish, angle: CSSNumericValue): CSSRotate;
990
+ };
991
+
992
+ interface CSSScale extends CSSTransformComponent {
993
+ x: CSSNumberish;
994
+ y: CSSNumberish;
995
+ z: CSSNumberish;
996
+ }
997
+
998
+ declare var CSSScale: {
999
+ prototype: CSSScale;
1000
+ new(x: CSSNumberish, y: CSSNumberish, z?: CSSNumberish): CSSScale;
1001
+ };
1002
+
1003
+ interface CSSSkew extends CSSTransformComponent {
1004
+ ax: CSSNumericValue;
1005
+ ay: CSSNumericValue;
1006
+ }
1007
+
1008
+ declare var CSSSkew: {
1009
+ prototype: CSSSkew;
1010
+ new(ax: CSSNumericValue, ay: CSSNumericValue): CSSSkew;
1011
+ };
1012
+
1013
+ interface CSSSkewX extends CSSTransformComponent {
1014
+ ax: CSSNumericValue;
1015
+ }
1016
+
1017
+ declare var CSSSkewX: {
1018
+ prototype: CSSSkewX;
1019
+ new(ax: CSSNumericValue): CSSSkewX;
1020
+ };
1021
+
1022
+ interface CSSSkewY extends CSSTransformComponent {
1023
+ ay: CSSNumericValue;
1024
+ }
1025
+
1026
+ declare var CSSSkewY: {
1027
+ prototype: CSSSkewY;
1028
+ new(ay: CSSNumericValue): CSSSkewY;
1029
+ };
1030
+
1031
+ interface CSSStyleValue {
1032
+ toString(): string;
1033
+ }
1034
+
1035
+ declare var CSSStyleValue: {
1036
+ prototype: CSSStyleValue;
1037
+ new(): CSSStyleValue;
1038
+ };
1039
+
1040
+ interface CSSTransformComponent {
1041
+ is2D: boolean;
1042
+ toMatrix(): DOMMatrix;
1043
+ toString(): string;
1044
+ }
1045
+
1046
+ declare var CSSTransformComponent: {
1047
+ prototype: CSSTransformComponent;
1048
+ new(): CSSTransformComponent;
1049
+ };
1050
+
1051
+ interface CSSTransformValue extends CSSStyleValue {
1052
+ readonly is2D: boolean;
1053
+ readonly length: number;
1054
+ toMatrix(): DOMMatrix;
1055
+ forEach(callbackfn: (value: CSSTransformComponent, key: number, parent: CSSTransformValue) => void, thisArg?: any): void;
1056
+ [index: number]: CSSTransformComponent;
1057
+ }
1058
+
1059
+ declare var CSSTransformValue: {
1060
+ prototype: CSSTransformValue;
1061
+ new(transforms: CSSTransformComponent[]): CSSTransformValue;
1062
+ };
1063
+
1064
+ interface CSSTranslate extends CSSTransformComponent {
1065
+ x: CSSNumericValue;
1066
+ y: CSSNumericValue;
1067
+ z: CSSNumericValue;
1068
+ }
1069
+
1070
+ declare var CSSTranslate: {
1071
+ prototype: CSSTranslate;
1072
+ new(x: CSSNumericValue, y: CSSNumericValue, z?: CSSNumericValue): CSSTranslate;
1073
+ };
1074
+
1075
+ interface CSSUnitValue extends CSSNumericValue {
1076
+ readonly unit: string;
1077
+ value: number;
1078
+ }
1079
+
1080
+ declare var CSSUnitValue: {
1081
+ prototype: CSSUnitValue;
1082
+ new(value: number, unit: string): CSSUnitValue;
1083
+ };
1084
+
1085
+ interface CSSUnparsedValue extends CSSStyleValue {
1086
+ readonly length: number;
1087
+ forEach(callbackfn: (value: CSSUnparsedSegment, key: number, parent: CSSUnparsedValue) => void, thisArg?: any): void;
1088
+ [index: number]: CSSUnparsedSegment;
1089
+ }
1090
+
1091
+ declare var CSSUnparsedValue: {
1092
+ prototype: CSSUnparsedValue;
1093
+ new(members: CSSUnparsedSegment[]): CSSUnparsedValue;
1094
+ };
1095
+
1096
+ interface CSSVariableReferenceValue {
1097
+ readonly fallback: CSSUnparsedValue | null;
1098
+ variable: string;
1099
+ }
1100
+
1101
+ declare var CSSVariableReferenceValue: {
1102
+ prototype: CSSVariableReferenceValue;
1103
+ new(variable: string, fallback?: CSSUnparsedValue | null): CSSVariableReferenceValue;
1104
+ };
1105
+
821
1106
  /**
822
1107
  * 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.
823
1108
  * Available only in secure contexts.
@@ -1040,6 +1325,14 @@ declare var CloseEvent: {
1040
1325
  new(type: string, eventInitDict?: CloseEventInit): CloseEvent;
1041
1326
  };
1042
1327
 
1328
+ interface CompressionStream extends GenericTransformStream {
1329
+ }
1330
+
1331
+ declare var CompressionStream: {
1332
+ prototype: CompressionStream;
1333
+ new(format: string): CompressionStream;
1334
+ };
1335
+
1043
1336
  /** This Streams API interface provides a built-in byte length queuing strategy that can be used when constructing streams. */
1044
1337
  interface CountQueuingStrategy extends QueuingStrategy {
1045
1338
  readonly highWaterMark: number;
@@ -1344,6 +1637,14 @@ declare var DOMStringList: {
1344
1637
  new(): DOMStringList;
1345
1638
  };
1346
1639
 
1640
+ interface DecompressionStream extends GenericTransformStream {
1641
+ }
1642
+
1643
+ declare var DecompressionStream: {
1644
+ prototype: DecompressionStream;
1645
+ new(format: string): DecompressionStream;
1646
+ };
1647
+
1347
1648
  interface EXT_blend_minmax {
1348
1649
  readonly MIN_EXT: 0x8007;
1349
1650
  readonly MAX_EXT: 0x8008;
@@ -2885,6 +3186,38 @@ interface ReadableStreamGenericReader {
2885
3186
  cancel(reason?: any): Promise<void>;
2886
3187
  }
2887
3188
 
3189
+ interface Report {
3190
+ readonly body: ReportBody | null;
3191
+ readonly type: string;
3192
+ readonly url: string;
3193
+ toJSON(): any;
3194
+ }
3195
+
3196
+ declare var Report: {
3197
+ prototype: Report;
3198
+ new(): Report;
3199
+ };
3200
+
3201
+ interface ReportBody {
3202
+ toJSON(): any;
3203
+ }
3204
+
3205
+ declare var ReportBody: {
3206
+ prototype: ReportBody;
3207
+ new(): ReportBody;
3208
+ };
3209
+
3210
+ interface ReportingObserver {
3211
+ disconnect(): void;
3212
+ observe(): void;
3213
+ takeRecords(): ReportList;
3214
+ }
3215
+
3216
+ declare var ReportingObserver: {
3217
+ prototype: ReportingObserver;
3218
+ new(callback: ReportingObserverCallback, options?: ReportingObserverOptions): ReportingObserver;
3219
+ };
3220
+
2888
3221
  /** This Fetch API interface represents a resource request. */
2889
3222
  interface Request extends Body {
2890
3223
  /** Returns the cache mode associated with request, which is a string indicating how the request will interact with the browser's cache when fetching. */
@@ -3099,6 +3432,19 @@ declare var StorageManager: {
3099
3432
  new(): StorageManager;
3100
3433
  };
3101
3434
 
3435
+ interface StylePropertyMapReadOnly {
3436
+ readonly size: number;
3437
+ get(property: string): undefined | CSSStyleValue;
3438
+ getAll(property: string): CSSStyleValue[];
3439
+ has(property: string): boolean;
3440
+ forEach(callbackfn: (value: CSSStyleValue[], key: string, parent: StylePropertyMapReadOnly) => void, thisArg?: any): void;
3441
+ }
3442
+
3443
+ declare var StylePropertyMapReadOnly: {
3444
+ prototype: StylePropertyMapReadOnly;
3445
+ new(): StylePropertyMapReadOnly;
3446
+ };
3447
+
3102
3448
  /**
3103
3449
  * 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).
3104
3450
  * Available only in secure contexts.
@@ -4767,6 +5113,7 @@ declare var WebGLRenderingContext: {
4767
5113
  };
4768
5114
 
4769
5115
  interface WebGLRenderingContextBase {
5116
+ drawingBufferColorSpace: PredefinedColorSpace;
4770
5117
  readonly drawingBufferHeight: GLsizei;
4771
5118
  readonly drawingBufferWidth: GLsizei;
4772
5119
  activeTexture(texture: GLenum): void;
@@ -5406,7 +5753,7 @@ interface WindowOrWorkerGlobalScope {
5406
5753
  reportError(e: any): void;
5407
5754
  setInterval(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;
5408
5755
  setTimeout(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;
5409
- structuredClone(value: any, options?: StructuredSerializeOptions): any;
5756
+ structuredClone<T = any>(value: T, options?: StructuredSerializeOptions): T;
5410
5757
  }
5411
5758
 
5412
5759
  interface WorkerGlobalScopeEventMap {
@@ -5467,6 +5814,7 @@ declare var WorkerLocation: {
5467
5814
  /** A subset of the Navigator interface allowed to be accessed from a Worker. Such an object is initialized for each worker and is available via the WorkerGlobalScope.navigator property obtained by calling window.self.navigator. */
5468
5815
  interface WorkerNavigator extends NavigatorConcurrentHardware, NavigatorID, NavigatorLanguage, NavigatorLocks, NavigatorOnLine, NavigatorStorage {
5469
5816
  readonly mediaCapabilities: MediaCapabilities;
5817
+ readonly permissions: Permissions;
5470
5818
  }
5471
5819
 
5472
5820
  declare var WorkerNavigator: {
@@ -5684,6 +6032,10 @@ interface QueuingStrategySize<T = any> {
5684
6032
  (chunk: T): number;
5685
6033
  }
5686
6034
 
6035
+ interface ReportingObserverCallback {
6036
+ (reports: Report[], observer: ReportingObserver): void;
6037
+ }
6038
+
5687
6039
  interface TransformerFlushCallback<O> {
5688
6040
  (controller: TransformStreamDefaultController<O>): void | PromiseLike<void>;
5689
6041
  }
@@ -5779,7 +6131,7 @@ declare function queueMicrotask(callback: VoidFunction): void;
5779
6131
  declare function reportError(e: any): void;
5780
6132
  declare function setInterval(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;
5781
6133
  declare function setTimeout(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;
5782
- declare function structuredClone(value: any, options?: StructuredSerializeOptions): any;
6134
+ declare function structuredClone<T = any>(value: T, options?: StructuredSerializeOptions): T;
5783
6135
  declare function addEventListener<K extends keyof ServiceWorkerGlobalScopeEventMap>(type: K, listener: (this: ServiceWorkerGlobalScope, ev: ServiceWorkerGlobalScopeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
5784
6136
  declare function addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
5785
6137
  declare function removeEventListener<K extends keyof ServiceWorkerGlobalScopeEventMap>(type: K, listener: (this: ServiceWorkerGlobalScope, ev: ServiceWorkerGlobalScopeEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
@@ -5790,6 +6142,10 @@ type BinaryData = ArrayBuffer | ArrayBufferView;
5790
6142
  type BlobPart = BufferSource | Blob | string;
5791
6143
  type BodyInit = ReadableStream | XMLHttpRequestBodyInit;
5792
6144
  type BufferSource = ArrayBufferView | ArrayBuffer;
6145
+ type CSSKeywordish = string | CSSKeywordValue;
6146
+ type CSSNumberish = number | CSSNumericValue;
6147
+ type CSSPerspectiveValue = CSSNumericValue | CSSKeywordish;
6148
+ type CSSUnparsedSegment = string | CSSVariableReferenceValue;
5793
6149
  type CanvasImageSource = ImageBitmap | OffscreenCanvas;
5794
6150
  type DOMHighResTimeStamp = number;
5795
6151
  type EpochTimeStamp = number;
@@ -5822,6 +6178,7 @@ type PushMessageDataInit = BufferSource | string;
5822
6178
  type ReadableStreamController<T> = ReadableStreamDefaultController<T> | ReadableByteStreamController;
5823
6179
  type ReadableStreamReadResult<T> = ReadableStreamReadValueResult<T> | ReadableStreamReadDoneResult<T>;
5824
6180
  type ReadableStreamReader<T> = ReadableStreamDefaultReader<T> | ReadableStreamBYOBReader;
6181
+ type ReportList = Report[];
5825
6182
  type RequestInfo = Request | string;
5826
6183
  type TexImageSource = ImageBitmap | ImageData | OffscreenCanvas;
5827
6184
  type TimerHandler = string | Function;
@@ -5830,6 +6187,8 @@ type Uint32List = Uint32Array | GLuint[];
5830
6187
  type VibratePattern = number | number[];
5831
6188
  type XMLHttpRequestBodyInit = Blob | BufferSource | FormData | URLSearchParams | string;
5832
6189
  type BinaryType = "arraybuffer" | "blob";
6190
+ type CSSMathOperator = "clamp" | "invert" | "max" | "min" | "negate" | "product" | "sum";
6191
+ type CSSNumericBaseType = "angle" | "flex" | "frequency" | "length" | "percent" | "resolution" | "time";
5833
6192
  type CanvasDirection = "inherit" | "ltr" | "rtl";
5834
6193
  type CanvasFillRule = "evenodd" | "nonzero";
5835
6194
  type CanvasFontKerning = "auto" | "none" | "normal";
package/iterable.d.ts CHANGED
@@ -2,6 +2,27 @@
2
2
  /// ServiceWorker Iterable APIs
3
3
  /////////////////////////////
4
4
 
5
+ interface CSSNumericArray {
6
+ [Symbol.iterator](): IterableIterator<CSSNumericValue>;
7
+ entries(): IterableIterator<[number, CSSNumericValue]>;
8
+ keys(): IterableIterator<number>;
9
+ values(): IterableIterator<CSSNumericValue>;
10
+ }
11
+
12
+ interface CSSTransformValue {
13
+ [Symbol.iterator](): IterableIterator<CSSTransformComponent>;
14
+ entries(): IterableIterator<[number, CSSTransformComponent]>;
15
+ keys(): IterableIterator<number>;
16
+ values(): IterableIterator<CSSTransformComponent>;
17
+ }
18
+
19
+ interface CSSUnparsedValue {
20
+ [Symbol.iterator](): IterableIterator<CSSUnparsedSegment>;
21
+ entries(): IterableIterator<[number, CSSUnparsedSegment]>;
22
+ keys(): IterableIterator<number>;
23
+ values(): IterableIterator<CSSUnparsedSegment>;
24
+ }
25
+
5
26
  interface Cache {
6
27
  addAll(requests: Iterable<RequestInfo>): Promise<void>;
7
28
  }
@@ -64,6 +85,13 @@ interface MessageEvent<T = any> {
64
85
  initMessageEvent(type: string, bubbles?: boolean, cancelable?: boolean, data?: any, origin?: string, lastEventId?: string, source?: MessageEventSource | null, ports?: Iterable<MessagePort>): void;
65
86
  }
66
87
 
88
+ interface StylePropertyMapReadOnly {
89
+ [Symbol.iterator](): IterableIterator<[string, Iterable<CSSStyleValue>]>;
90
+ entries(): IterableIterator<[string, Iterable<CSSStyleValue>]>;
91
+ keys(): IterableIterator<string>;
92
+ values(): IterableIterator<Iterable<CSSStyleValue>>;
93
+ }
94
+
67
95
  interface SubtleCrypto {
68
96
  deriveKey(algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, derivedKeyType: AlgorithmIdentifier | AesDerivedKeyParams | HmacImportParams | HkdfParams | Pbkdf2Params, extractable: boolean, keyUsages: Iterable<KeyUsage>): Promise<CryptoKey>;
69
97
  generateKey(algorithm: RsaHashedKeyGenParams | EcKeyGenParams, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKeyPair>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/serviceworker",
3
- "version": "0.0.63",
3
+ "version": "0.0.65",
4
4
  "description": "Types for the global scope of Service Workers",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],