@types/sharedworker 0.0.68 → 0.0.69

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.68 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fsharedworker%400.0.68.
31
+ You can read what changed in version 0.0.69 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fsharedworker%400.0.69.
package/index.d.ts CHANGED
@@ -665,6 +665,7 @@ interface AbortSignal extends EventTarget {
665
665
  /** Returns true if this AbortSignal's AbortController has signaled to abort, and false otherwise. */
666
666
  readonly aborted: boolean;
667
667
  onabort: ((this: AbortSignal, ev: Event) => any) | null;
668
+ readonly reason: any;
668
669
  addEventListener<K extends keyof AbortSignalEventMap>(type: K, listener: (this: AbortSignal, ev: AbortSignalEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
669
670
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
670
671
  removeEventListener<K extends keyof AbortSignalEventMap>(type: K, listener: (this: AbortSignal, ev: AbortSignalEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
@@ -2950,13 +2951,6 @@ interface WEBGL_compressed_texture_etc1 {
2950
2951
  readonly COMPRESSED_RGB_ETC1_WEBGL: GLenum;
2951
2952
  }
2952
2953
 
2953
- interface WEBGL_compressed_texture_pvrtc {
2954
- readonly COMPRESSED_RGBA_PVRTC_2BPPV1_IMG: GLenum;
2955
- readonly COMPRESSED_RGBA_PVRTC_4BPPV1_IMG: GLenum;
2956
- readonly COMPRESSED_RGB_PVRTC_2BPPV1_IMG: GLenum;
2957
- readonly COMPRESSED_RGB_PVRTC_4BPPV1_IMG: GLenum;
2958
- }
2959
-
2960
2954
  /** The WEBGL_compressed_texture_s3tc extension is part of the WebGL API and exposes four S3TC compressed texture formats. */
2961
2955
  interface WEBGL_compressed_texture_s3tc {
2962
2956
  readonly COMPRESSED_RGBA_S3TC_DXT1_EXT: GLenum;
@@ -4447,7 +4441,6 @@ interface WebGLRenderingContextBase {
4447
4441
  getExtension(extensionName: "WEBGL_compressed_texture_astc"): WEBGL_compressed_texture_astc | null;
4448
4442
  getExtension(extensionName: "WEBGL_compressed_texture_etc"): WEBGL_compressed_texture_etc | null;
4449
4443
  getExtension(extensionName: "WEBGL_compressed_texture_etc1"): WEBGL_compressed_texture_etc1 | null;
4450
- getExtension(extensionName: "WEBGL_compressed_texture_pvrtc"): WEBGL_compressed_texture_pvrtc | null;
4451
4444
  getExtension(extensionName: "WEBGL_compressed_texture_s3tc_srgb"): WEBGL_compressed_texture_s3tc_srgb | null;
4452
4445
  getExtension(extensionName: "WEBGL_debug_shaders"): WEBGL_debug_shaders | null;
4453
4446
  getExtension(extensionName: "WEBGL_draw_buffers"): WEBGL_draw_buffers | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/sharedworker",
3
- "version": "0.0.68",
3
+ "version": "0.0.69",
4
4
  "description": "Types for the global scope of Shared Workers",
5
5
  "license": "MIT",
6
6
  "contributors": [],