@types/serviceworker 0.0.39 → 0.0.40

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/index.d.ts +1 -8
  3. package/package.json +1 -1
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.39 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.39.
31
+ You can read what changed in version 0.0.40 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.40.
package/index.d.ts CHANGED
@@ -693,6 +693,7 @@ interface AbortSignal extends EventTarget {
693
693
  /** Returns true if this AbortSignal's AbortController has signaled to abort, and false otherwise. */
694
694
  readonly aborted: boolean;
695
695
  onabort: ((this: AbortSignal, ev: Event) => any) | null;
696
+ readonly reason: any;
696
697
  addEventListener<K extends keyof AbortSignalEventMap>(type: K, listener: (this: AbortSignal, ev: AbortSignalEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
697
698
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
698
699
  removeEventListener<K extends keyof AbortSignalEventMap>(type: K, listener: (this: AbortSignal, ev: AbortSignalEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
@@ -3083,13 +3084,6 @@ interface WEBGL_compressed_texture_etc1 {
3083
3084
  readonly COMPRESSED_RGB_ETC1_WEBGL: GLenum;
3084
3085
  }
3085
3086
 
3086
- interface WEBGL_compressed_texture_pvrtc {
3087
- readonly COMPRESSED_RGBA_PVRTC_2BPPV1_IMG: GLenum;
3088
- readonly COMPRESSED_RGBA_PVRTC_4BPPV1_IMG: GLenum;
3089
- readonly COMPRESSED_RGB_PVRTC_2BPPV1_IMG: GLenum;
3090
- readonly COMPRESSED_RGB_PVRTC_4BPPV1_IMG: GLenum;
3091
- }
3092
-
3093
3087
  /** The WEBGL_compressed_texture_s3tc extension is part of the WebGL API and exposes four S3TC compressed texture formats. */
3094
3088
  interface WEBGL_compressed_texture_s3tc {
3095
3089
  readonly COMPRESSED_RGBA_S3TC_DXT1_EXT: GLenum;
@@ -4580,7 +4574,6 @@ interface WebGLRenderingContextBase {
4580
4574
  getExtension(extensionName: "WEBGL_compressed_texture_astc"): WEBGL_compressed_texture_astc | null;
4581
4575
  getExtension(extensionName: "WEBGL_compressed_texture_etc"): WEBGL_compressed_texture_etc | null;
4582
4576
  getExtension(extensionName: "WEBGL_compressed_texture_etc1"): WEBGL_compressed_texture_etc1 | null;
4583
- getExtension(extensionName: "WEBGL_compressed_texture_pvrtc"): WEBGL_compressed_texture_pvrtc | null;
4584
4577
  getExtension(extensionName: "WEBGL_compressed_texture_s3tc_srgb"): WEBGL_compressed_texture_s3tc_srgb | null;
4585
4578
  getExtension(extensionName: "WEBGL_debug_shaders"): WEBGL_debug_shaders | null;
4586
4579
  getExtension(extensionName: "WEBGL_draw_buffers"): WEBGL_draw_buffers | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/serviceworker",
3
- "version": "0.0.39",
3
+ "version": "0.0.40",
4
4
  "description": "Types for the global scope of Service Workers",
5
5
  "license": "MIT",
6
6
  "contributors": [],