@types/web 0.0.98 → 0.0.99

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 +3 -3
  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.98 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.98.
50
+ You can read what changed in version 0.0.99 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.99.
package/index.d.ts CHANGED
@@ -2003,7 +2003,7 @@ interface VideoEncoderConfig {
2003
2003
  alpha?: AlphaOption;
2004
2004
  avc?: AvcEncoderConfig;
2005
2005
  bitrate?: number;
2006
- bitrateMode?: BitrateMode;
2006
+ bitrateMode?: VideoEncoderBitrateMode;
2007
2007
  codec: string;
2008
2008
  displayHeight?: number;
2009
2009
  displayWidth?: number;
@@ -19307,7 +19307,6 @@ type AutomationRate = "a-rate" | "k-rate";
19307
19307
  type AvcBitstreamFormat = "annexb" | "avc";
19308
19308
  type BinaryType = "arraybuffer" | "blob";
19309
19309
  type BiquadFilterType = "allpass" | "bandpass" | "highpass" | "highshelf" | "lowpass" | "lowshelf" | "notch" | "peaking";
19310
- type BitrateMode = "constant" | "variable";
19311
19310
  type CSSMathOperator = "clamp" | "invert" | "max" | "min" | "negate" | "product" | "sum";
19312
19311
  type CSSNumericBaseType = "angle" | "flex" | "frequency" | "length" | "percent" | "resolution" | "time";
19313
19312
  type CanPlayTypeResult = "" | "maybe" | "probably";
@@ -19356,7 +19355,7 @@ type IDBCursorDirection = "next" | "nextunique" | "prev" | "prevunique";
19356
19355
  type IDBRequestReadyState = "done" | "pending";
19357
19356
  type IDBTransactionDurability = "default" | "relaxed" | "strict";
19358
19357
  type IDBTransactionMode = "readonly" | "readwrite" | "versionchange";
19359
- type ImageOrientation = "flipY" | "from-image";
19358
+ type ImageOrientation = "flipY" | "from-image" | "none";
19360
19359
  type ImageSmoothingQuality = "high" | "low" | "medium";
19361
19360
  type InsertPosition = "afterbegin" | "afterend" | "beforebegin" | "beforeend";
19362
19361
  type IterationCompositeOperation = "accumulate" | "replace";
@@ -19455,6 +19454,7 @@ type TouchType = "direct" | "stylus";
19455
19454
  type TransferFunction = "hlg" | "pq" | "srgb";
19456
19455
  type UserVerificationRequirement = "discouraged" | "preferred" | "required";
19457
19456
  type VideoColorPrimaries = "bt470bg" | "bt709" | "smpte170m";
19457
+ type VideoEncoderBitrateMode = "constant" | "quantizer" | "variable";
19458
19458
  type VideoFacingModeEnum = "environment" | "left" | "right" | "user";
19459
19459
  type VideoMatrixCoefficients = "bt470bg" | "bt709" | "rgb" | "smpte170m";
19460
19460
  type VideoPixelFormat = "BGRA" | "BGRX" | "I420" | "I420A" | "I422" | "I444" | "NV12" | "RGBA" | "RGBX";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/web",
3
- "version": "0.0.98",
3
+ "version": "0.0.99",
4
4
  "description": "Types for the DOM, and other web technologies in browsers",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],