@types/web 0.0.311 → 0.0.313

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
@@ -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.311 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.311.
50
+ You can read what changed in version 0.0.313 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.313.
package/index.d.ts CHANGED
@@ -5159,7 +5159,7 @@ interface CSSKeyframesRule extends CSSRule {
5159
5159
  */
5160
5160
  readonly cssRules: CSSRuleList;
5161
5161
  /**
5162
- * The read-only **`length`** property of the CSSKeyframeRule interface returns the number of CSSKeyframeRule objects in its list. You can then access each keyframe rule by its index directly on the CSSKeyframeRule object.
5162
+ * The read-only **`length`** property of the CSSKeyframesRule interface returns the number of CSSKeyframeRule objects in its list. You can then access each keyframe rule by its index directly on the CSSKeyframeRule object.
5163
5163
  *
5164
5164
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeyframesRule/length)
5165
5165
  */
@@ -28050,7 +28050,7 @@ interface RTCRtpReceiver {
28050
28050
  *
28051
28051
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/transform)
28052
28052
  */
28053
- transform: RTCRtpTransform | null;
28053
+ transform: RTCRtpReceiverTransform | null;
28054
28054
  /**
28055
28055
  * The read-only **`transport`** property of an RTCRtpReceiver object provides the RTCDtlsTransport object used to interact with the underlying transport over which the receiver is exchanging Real-time Transport Control Protocol (RTCP) packets.
28056
28056
  *
@@ -28130,7 +28130,7 @@ interface RTCRtpSender {
28130
28130
  *
28131
28131
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/transform)
28132
28132
  */
28133
- transform: RTCRtpTransform | null;
28133
+ transform: RTCRtpSenderTransform | null;
28134
28134
  /**
28135
28135
  * The read-only **`transport`** property of an RTCRtpSender object provides the RTCDtlsTransport object used to interact with the underlying transport over which the sender is exchanging Real-time Transport Control Protocol (RTCP) packets.
28136
28136
  *
@@ -29564,13 +29564,13 @@ declare var SVGAnimatedRect: {
29564
29564
  */
29565
29565
  interface SVGAnimatedString {
29566
29566
  /**
29567
- * The **`animVal`** read-only property of the SVGAnimatedString interface contains the same value as the SVGAnimatedString.baseVal property. If the given attribute or property is being animated, it contains the current animated value of the attribute or property. If the given attribute or property is not currently being animated, then it contains the same value as baseVal.
29567
+ * The **`animVal`** read-only property of the SVGAnimatedString interface is a string representing the animated value of the reflected attribute.
29568
29568
  *
29569
29569
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/animVal)
29570
29570
  */
29571
29571
  readonly animVal: string;
29572
29572
  /**
29573
- * BaseVal gets or sets the base value of the given attribute before any animations are applied. The base value of the given attribute before applying any animations. Setter throws DOMException.
29573
+ * The **`baseVal`** property of the SVGAnimatedString interface gets or sets the base value of the given attribute.
29574
29574
  *
29575
29575
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/baseVal)
29576
29576
  */
@@ -42474,7 +42474,8 @@ type OptionalPostfixToken<T extends string> = ` ${T}` | "";
42474
42474
  type OptionalPrefixToken<T extends string> = `${T} ` | "";
42475
42475
  type PerformanceEntryList = PerformanceEntry[];
42476
42476
  type PublicKeyCredentialClientCapabilities = Record<string, boolean>;
42477
- type RTCRtpTransform = RTCRtpScriptTransform;
42477
+ type RTCRtpReceiverTransform = RTCRtpScriptTransform;
42478
+ type RTCRtpSenderTransform = RTCRtpScriptTransform;
42478
42479
  type ReadableStreamController<T> = ReadableStreamDefaultController<T> | ReadableByteStreamController;
42479
42480
  type ReadableStreamReadResult<T> = ReadableStreamReadValueResult<T> | ReadableStreamReadDoneResult<T>;
42480
42481
  type ReadableStreamReader<T> = ReadableStreamDefaultReader<T> | ReadableStreamBYOBReader;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/web",
3
- "version": "0.0.311",
3
+ "version": "0.0.313",
4
4
  "description": "Types for the DOM, and other web technologies in browsers",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],
package/ts5.5/index.d.ts CHANGED
@@ -5153,7 +5153,7 @@ interface CSSKeyframesRule extends CSSRule {
5153
5153
  */
5154
5154
  readonly cssRules: CSSRuleList;
5155
5155
  /**
5156
- * The read-only **`length`** property of the CSSKeyframeRule interface returns the number of CSSKeyframeRule objects in its list. You can then access each keyframe rule by its index directly on the CSSKeyframeRule object.
5156
+ * The read-only **`length`** property of the CSSKeyframesRule interface returns the number of CSSKeyframeRule objects in its list. You can then access each keyframe rule by its index directly on the CSSKeyframeRule object.
5157
5157
  *
5158
5158
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeyframesRule/length)
5159
5159
  */
@@ -28026,7 +28026,7 @@ interface RTCRtpReceiver {
28026
28026
  *
28027
28027
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/transform)
28028
28028
  */
28029
- transform: RTCRtpTransform | null;
28029
+ transform: RTCRtpReceiverTransform | null;
28030
28030
  /**
28031
28031
  * The read-only **`transport`** property of an RTCRtpReceiver object provides the RTCDtlsTransport object used to interact with the underlying transport over which the receiver is exchanging Real-time Transport Control Protocol (RTCP) packets.
28032
28032
  *
@@ -28106,7 +28106,7 @@ interface RTCRtpSender {
28106
28106
  *
28107
28107
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/transform)
28108
28108
  */
28109
- transform: RTCRtpTransform | null;
28109
+ transform: RTCRtpSenderTransform | null;
28110
28110
  /**
28111
28111
  * The read-only **`transport`** property of an RTCRtpSender object provides the RTCDtlsTransport object used to interact with the underlying transport over which the sender is exchanging Real-time Transport Control Protocol (RTCP) packets.
28112
28112
  *
@@ -29539,13 +29539,13 @@ declare var SVGAnimatedRect: {
29539
29539
  */
29540
29540
  interface SVGAnimatedString {
29541
29541
  /**
29542
- * The **`animVal`** read-only property of the SVGAnimatedString interface contains the same value as the SVGAnimatedString.baseVal property. If the given attribute or property is being animated, it contains the current animated value of the attribute or property. If the given attribute or property is not currently being animated, then it contains the same value as baseVal.
29542
+ * The **`animVal`** read-only property of the SVGAnimatedString interface is a string representing the animated value of the reflected attribute.
29543
29543
  *
29544
29544
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/animVal)
29545
29545
  */
29546
29546
  readonly animVal: string;
29547
29547
  /**
29548
- * BaseVal gets or sets the base value of the given attribute before any animations are applied. The base value of the given attribute before applying any animations. Setter throws DOMException.
29548
+ * The **`baseVal`** property of the SVGAnimatedString interface gets or sets the base value of the given attribute.
29549
29549
  *
29550
29550
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/baseVal)
29551
29551
  */
@@ -42448,7 +42448,8 @@ type OptionalPostfixToken<T extends string> = ` ${T}` | "";
42448
42448
  type OptionalPrefixToken<T extends string> = `${T} ` | "";
42449
42449
  type PerformanceEntryList = PerformanceEntry[];
42450
42450
  type PublicKeyCredentialClientCapabilities = Record<string, boolean>;
42451
- type RTCRtpTransform = RTCRtpScriptTransform;
42451
+ type RTCRtpReceiverTransform = RTCRtpScriptTransform;
42452
+ type RTCRtpSenderTransform = RTCRtpScriptTransform;
42452
42453
  type ReadableStreamController<T> = ReadableStreamDefaultController<T> | ReadableByteStreamController;
42453
42454
  type ReadableStreamReadResult<T> = ReadableStreamReadValueResult<T> | ReadableStreamReadDoneResult<T>;
42454
42455
  type ReadableStreamReader<T> = ReadableStreamDefaultReader<T> | ReadableStreamBYOBReader;
package/ts5.6/index.d.ts CHANGED
@@ -5156,7 +5156,7 @@ interface CSSKeyframesRule extends CSSRule {
5156
5156
  */
5157
5157
  readonly cssRules: CSSRuleList;
5158
5158
  /**
5159
- * The read-only **`length`** property of the CSSKeyframeRule interface returns the number of CSSKeyframeRule objects in its list. You can then access each keyframe rule by its index directly on the CSSKeyframeRule object.
5159
+ * The read-only **`length`** property of the CSSKeyframesRule interface returns the number of CSSKeyframeRule objects in its list. You can then access each keyframe rule by its index directly on the CSSKeyframeRule object.
5160
5160
  *
5161
5161
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeyframesRule/length)
5162
5162
  */
@@ -28047,7 +28047,7 @@ interface RTCRtpReceiver {
28047
28047
  *
28048
28048
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/transform)
28049
28049
  */
28050
- transform: RTCRtpTransform | null;
28050
+ transform: RTCRtpReceiverTransform | null;
28051
28051
  /**
28052
28052
  * The read-only **`transport`** property of an RTCRtpReceiver object provides the RTCDtlsTransport object used to interact with the underlying transport over which the receiver is exchanging Real-time Transport Control Protocol (RTCP) packets.
28053
28053
  *
@@ -28127,7 +28127,7 @@ interface RTCRtpSender {
28127
28127
  *
28128
28128
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/transform)
28129
28129
  */
28130
- transform: RTCRtpTransform | null;
28130
+ transform: RTCRtpSenderTransform | null;
28131
28131
  /**
28132
28132
  * The read-only **`transport`** property of an RTCRtpSender object provides the RTCDtlsTransport object used to interact with the underlying transport over which the sender is exchanging Real-time Transport Control Protocol (RTCP) packets.
28133
28133
  *
@@ -29561,13 +29561,13 @@ declare var SVGAnimatedRect: {
29561
29561
  */
29562
29562
  interface SVGAnimatedString {
29563
29563
  /**
29564
- * The **`animVal`** read-only property of the SVGAnimatedString interface contains the same value as the SVGAnimatedString.baseVal property. If the given attribute or property is being animated, it contains the current animated value of the attribute or property. If the given attribute or property is not currently being animated, then it contains the same value as baseVal.
29564
+ * The **`animVal`** read-only property of the SVGAnimatedString interface is a string representing the animated value of the reflected attribute.
29565
29565
  *
29566
29566
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/animVal)
29567
29567
  */
29568
29568
  readonly animVal: string;
29569
29569
  /**
29570
- * BaseVal gets or sets the base value of the given attribute before any animations are applied. The base value of the given attribute before applying any animations. Setter throws DOMException.
29570
+ * The **`baseVal`** property of the SVGAnimatedString interface gets or sets the base value of the given attribute.
29571
29571
  *
29572
29572
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/baseVal)
29573
29573
  */
@@ -42471,7 +42471,8 @@ type OptionalPostfixToken<T extends string> = ` ${T}` | "";
42471
42471
  type OptionalPrefixToken<T extends string> = `${T} ` | "";
42472
42472
  type PerformanceEntryList = PerformanceEntry[];
42473
42473
  type PublicKeyCredentialClientCapabilities = Record<string, boolean>;
42474
- type RTCRtpTransform = RTCRtpScriptTransform;
42474
+ type RTCRtpReceiverTransform = RTCRtpScriptTransform;
42475
+ type RTCRtpSenderTransform = RTCRtpScriptTransform;
42475
42476
  type ReadableStreamController<T> = ReadableStreamDefaultController<T> | ReadableByteStreamController;
42476
42477
  type ReadableStreamReadResult<T> = ReadableStreamReadValueResult<T> | ReadableStreamReadDoneResult<T>;
42477
42478
  type ReadableStreamReader<T> = ReadableStreamDefaultReader<T> | ReadableStreamBYOBReader;
package/ts5.9/index.d.ts CHANGED
@@ -5156,7 +5156,7 @@ interface CSSKeyframesRule extends CSSRule {
5156
5156
  */
5157
5157
  readonly cssRules: CSSRuleList;
5158
5158
  /**
5159
- * The read-only **`length`** property of the CSSKeyframeRule interface returns the number of CSSKeyframeRule objects in its list. You can then access each keyframe rule by its index directly on the CSSKeyframeRule object.
5159
+ * The read-only **`length`** property of the CSSKeyframesRule interface returns the number of CSSKeyframeRule objects in its list. You can then access each keyframe rule by its index directly on the CSSKeyframeRule object.
5160
5160
  *
5161
5161
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeyframesRule/length)
5162
5162
  */
@@ -28047,7 +28047,7 @@ interface RTCRtpReceiver {
28047
28047
  *
28048
28048
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/transform)
28049
28049
  */
28050
- transform: RTCRtpTransform | null;
28050
+ transform: RTCRtpReceiverTransform | null;
28051
28051
  /**
28052
28052
  * The read-only **`transport`** property of an RTCRtpReceiver object provides the RTCDtlsTransport object used to interact with the underlying transport over which the receiver is exchanging Real-time Transport Control Protocol (RTCP) packets.
28053
28053
  *
@@ -28127,7 +28127,7 @@ interface RTCRtpSender {
28127
28127
  *
28128
28128
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpSender/transform)
28129
28129
  */
28130
- transform: RTCRtpTransform | null;
28130
+ transform: RTCRtpSenderTransform | null;
28131
28131
  /**
28132
28132
  * The read-only **`transport`** property of an RTCRtpSender object provides the RTCDtlsTransport object used to interact with the underlying transport over which the sender is exchanging Real-time Transport Control Protocol (RTCP) packets.
28133
28133
  *
@@ -29561,13 +29561,13 @@ declare var SVGAnimatedRect: {
29561
29561
  */
29562
29562
  interface SVGAnimatedString {
29563
29563
  /**
29564
- * The **`animVal`** read-only property of the SVGAnimatedString interface contains the same value as the SVGAnimatedString.baseVal property. If the given attribute or property is being animated, it contains the current animated value of the attribute or property. If the given attribute or property is not currently being animated, then it contains the same value as baseVal.
29564
+ * The **`animVal`** read-only property of the SVGAnimatedString interface is a string representing the animated value of the reflected attribute.
29565
29565
  *
29566
29566
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/animVal)
29567
29567
  */
29568
29568
  readonly animVal: string;
29569
29569
  /**
29570
- * BaseVal gets or sets the base value of the given attribute before any animations are applied. The base value of the given attribute before applying any animations. Setter throws DOMException.
29570
+ * The **`baseVal`** property of the SVGAnimatedString interface gets or sets the base value of the given attribute.
29571
29571
  *
29572
29572
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedString/baseVal)
29573
29573
  */
@@ -42471,7 +42471,8 @@ type OptionalPostfixToken<T extends string> = ` ${T}` | "";
42471
42471
  type OptionalPrefixToken<T extends string> = `${T} ` | "";
42472
42472
  type PerformanceEntryList = PerformanceEntry[];
42473
42473
  type PublicKeyCredentialClientCapabilities = Record<string, boolean>;
42474
- type RTCRtpTransform = RTCRtpScriptTransform;
42474
+ type RTCRtpReceiverTransform = RTCRtpScriptTransform;
42475
+ type RTCRtpSenderTransform = RTCRtpScriptTransform;
42475
42476
  type ReadableStreamController<T> = ReadableStreamDefaultController<T> | ReadableByteStreamController;
42476
42477
  type ReadableStreamReadResult<T> = ReadableStreamReadValueResult<T> | ReadableStreamReadDoneResult<T>;
42477
42478
  type ReadableStreamReader<T> = ReadableStreamDefaultReader<T> | ReadableStreamBYOBReader;