@types/web 0.0.89 → 0.0.90

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 +9 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -47,4 +47,4 @@ Prior to `@types/web` the web APIs were deployed with a version of TypeScript, a
47
47
 
48
48
  ## Deploy Metadata
49
49
 
50
- You can read what changed in version 0.0.89 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.89.
50
+ You can read what changed in version 0.0.90 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.90.
package/index.d.ts CHANGED
@@ -14880,6 +14880,13 @@ interface WEBGL_compressed_texture_etc1 {
14880
14880
  readonly COMPRESSED_RGB_ETC1_WEBGL: 0x8D64;
14881
14881
  }
14882
14882
 
14883
+ interface WEBGL_compressed_texture_pvrtc {
14884
+ readonly COMPRESSED_RGB_PVRTC_4BPPV1_IMG: 0x8C00;
14885
+ readonly COMPRESSED_RGB_PVRTC_2BPPV1_IMG: 0x8C01;
14886
+ readonly COMPRESSED_RGBA_PVRTC_4BPPV1_IMG: 0x8C02;
14887
+ readonly COMPRESSED_RGBA_PVRTC_2BPPV1_IMG: 0x8C03;
14888
+ }
14889
+
14883
14890
  /** The WEBGL_compressed_texture_s3tc extension is part of the WebGL API and exposes four S3TC compressed texture formats. */
14884
14891
  interface WEBGL_compressed_texture_s3tc {
14885
14892
  readonly COMPRESSED_RGB_S3TC_DXT1_EXT: 0x83F0;
@@ -16392,6 +16399,7 @@ interface WebGLRenderingContextBase {
16392
16399
  getExtension(extensionName: "WEBGL_compressed_texture_astc"): WEBGL_compressed_texture_astc | null;
16393
16400
  getExtension(extensionName: "WEBGL_compressed_texture_etc"): WEBGL_compressed_texture_etc | null;
16394
16401
  getExtension(extensionName: "WEBGL_compressed_texture_etc1"): WEBGL_compressed_texture_etc1 | null;
16402
+ getExtension(extensionName: "WEBGL_compressed_texture_pvrtc"): WEBGL_compressed_texture_pvrtc | null;
16395
16403
  getExtension(extensionName: "WEBGL_compressed_texture_s3tc"): WEBGL_compressed_texture_s3tc | null;
16396
16404
  getExtension(extensionName: "WEBGL_compressed_texture_s3tc_srgb"): WEBGL_compressed_texture_s3tc_srgb | null;
16397
16405
  getExtension(extensionName: "WEBGL_debug_renderer_info"): WEBGL_debug_renderer_info | null;
@@ -18685,7 +18693,7 @@ type ResidentKeyRequirement = "discouraged" | "preferred" | "required";
18685
18693
  type ResizeObserverBoxOptions = "border-box" | "content-box" | "device-pixel-content-box";
18686
18694
  type ResizeQuality = "high" | "low" | "medium" | "pixelated";
18687
18695
  type ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect";
18688
- type ScrollBehavior = "auto" | "smooth";
18696
+ type ScrollBehavior = "auto" | "instant" | "smooth";
18689
18697
  type ScrollLogicalPosition = "center" | "end" | "nearest" | "start";
18690
18698
  type ScrollRestoration = "auto" | "manual";
18691
18699
  type ScrollSetting = "" | "up";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/web",
3
- "version": "0.0.89",
3
+ "version": "0.0.90",
4
4
  "description": "Types for the DOM, and other web technologies in browsers",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],