@types/web 0.0.295 → 0.0.297

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/ts5.6/index.d.ts CHANGED
@@ -627,7 +627,7 @@ interface EffectTiming {
627
627
  }
628
628
 
629
629
  interface ElementCreationOptions {
630
- customElementRegistry?: CustomElementRegistry;
630
+ customElementRegistry?: CustomElementRegistry | null;
631
631
  is?: string;
632
632
  }
633
633
 
@@ -2201,6 +2201,10 @@ interface ShareData {
2201
2201
  url?: string;
2202
2202
  }
2203
2203
 
2204
+ interface ShowPopoverOptions {
2205
+ source?: HTMLElement;
2206
+ }
2207
+
2204
2208
  interface SpeechRecognitionErrorEventInit extends EventInit {
2205
2209
  error: SpeechRecognitionErrorCode;
2206
2210
  message?: string;
@@ -2316,6 +2320,10 @@ interface ToggleEventInit extends EventInit {
2316
2320
  source?: Element | null;
2317
2321
  }
2318
2322
 
2323
+ interface TogglePopoverOptions extends ShowPopoverOptions {
2324
+ force?: boolean;
2325
+ }
2326
+
2319
2327
  interface TouchEventInit extends EventModifierInit {
2320
2328
  changedTouches?: Touch[];
2321
2329
  targetTouches?: Touch[];
@@ -2610,8 +2618,8 @@ interface WebTransportErrorOptions {
2610
2618
  }
2611
2619
 
2612
2620
  interface WebTransportHash {
2613
- algorithm?: string;
2614
- value?: BufferSource;
2621
+ algorithm: string;
2622
+ value: BufferSource;
2615
2623
  }
2616
2624
 
2617
2625
  interface WebTransportOptions {
@@ -4829,7 +4837,7 @@ declare var CSSCounterStyleRule: {
4829
4837
  */
4830
4838
  interface CSSFontFaceRule extends CSSRule {
4831
4839
  /**
4832
- * The read-only **`style`** property of the CSSFontFaceRule interface returns the style information from the @font-face at-rule. This will be in the form of a CSSStyleDeclaration object.
4840
+ * The read-only **`style`** property of the CSSFontFaceRule interface contains a CSSStyleDeclaration object representing the descriptors available in the @font-face rule's body.
4833
4841
  *
4834
4842
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFaceRule/style)
4835
4843
  */
@@ -4961,7 +4969,7 @@ interface CSSImportRule extends CSSRule {
4961
4969
  */
4962
4970
  readonly layerName: string | null;
4963
4971
  /**
4964
- * The read-only **`media`** property of the CSSImportRule interface returns a MediaList object, containing the value of the media attribute of the associated stylesheet.
4972
+ * The read-only **`media`** property of the CSSImportRule interface returns a MediaList object representing the media query list of the @import rule.
4965
4973
  *
4966
4974
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/media)
4967
4975
  */
@@ -4999,7 +5007,7 @@ interface CSSKeyframeRule extends CSSRule {
4999
5007
  */
5000
5008
  keyText: string;
5001
5009
  /**
5002
- * The read-only **`CSSKeyframeRule.style`** property is the CSSStyleDeclaration interface for the declaration block of the CSSKeyframeRule.
5010
+ * The read-only **`style`** property of the CSSKeyframeRule interface contains a CSSStyleDeclaration object representing the descriptors available in the @keyframes rule's body.
5003
5011
  *
5004
5012
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeyframeRule/style)
5005
5013
  */
@@ -5289,7 +5297,7 @@ declare var CSSMatrixComponent: {
5289
5297
  */
5290
5298
  interface CSSMediaRule extends CSSConditionRule {
5291
5299
  /**
5292
- * The read-only **`media`** property of the CSSMediaRule interface returns a MediaList representing the intended destination medium for style information.
5300
+ * The read-only **`media`** property of the CSSMediaRule interface contains a MediaList object representing the media query list of the @media rule.
5293
5301
  *
5294
5302
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMediaRule/media)
5295
5303
  */
@@ -5493,7 +5501,7 @@ interface CSSPageRule extends CSSGroupingRule {
5493
5501
  */
5494
5502
  selectorText: string;
5495
5503
  /**
5496
- * The **`style`** read-only property of the CSSPageRule interface returns a CSSPageDescriptors object. This represents a CSS declaration block for a CSS @page at-rule, and exposes style information and various style-related methods and properties for the page.
5504
+ * The read-only **`style`** property of the CSSPageRule interface contains a CSSPageDescriptors object representing the descriptors available in the @page rule's body.
5497
5505
  *
5498
5506
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageRule/style)
5499
5507
  */
@@ -5691,7 +5699,7 @@ interface CSSPositionTryRule extends CSSRule {
5691
5699
  */
5692
5700
  readonly name: string;
5693
5701
  /**
5694
- * The **`style`** read-only property of the CSSPositionTryRule interface returns a CSSPositionTryDescriptors object representing the declarations set in the body of the @position-try at-rule.
5702
+ * The read-only **`style`** property of the CSSPositionTryRule interface contains a CSSPositionTryDescriptors object representing the descriptors available in the @position-try rule's body.
5695
5703
  *
5696
5704
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPositionTryRule/style)
5697
5705
  */
@@ -6186,7 +6194,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
6186
6194
  */
6187
6195
  animationRangeStart: string;
6188
6196
  /**
6189
- * The animation-timeline CSS property specifies the timeline that is used to control the progress of a CSS animation.
6197
+ * The animation-timeline CSS property specifies the timeline used to control the progress of a CSS animation.
6190
6198
  *
6191
6199
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/animation-timeline)
6192
6200
  */
@@ -7631,6 +7639,12 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
7631
7639
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/math-depth)
7632
7640
  */
7633
7641
  mathDepth: string;
7642
+ /**
7643
+ * The math-shift property indicates whether superscripts inside MathML formulas should be raised by a normal or compact shift.
7644
+ *
7645
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/math-shift)
7646
+ */
7647
+ mathShift: string;
7634
7648
  /**
7635
7649
  * The math-style property indicates whether MathML equations should render with normal or compact height.
7636
7650
  *
@@ -8265,13 +8279,13 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
8265
8279
  */
8266
8280
  scrollSnapType: string;
8267
8281
  /**
8268
- * The scroll-timeline CSS shorthand property is used to define a named scroll progress timeline, which is progressed through by scrolling a scrollable element (scroller) between top and bottom (or left and right). scroll-timeline is set on the scroller that will provide the timeline. The starting scroll position represents 0% progress and the ending scroll position represents 100% progress. If the 0% position and 100% position coincide (i.e., the scroll container has no overflow to scroll), the timeline is inactive.
8282
+ * The scroll-timeline CSS shorthand property is used to define a named scroll progress timeline, which is progressed through by scrolling a scrollable element (scroller) between top and bottom (or left and right).
8269
8283
  *
8270
8284
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-timeline)
8271
8285
  */
8272
8286
  scrollTimeline: string;
8273
8287
  /**
8274
- * The scroll-timeline-axis CSS property is used to specify the scrollbar direction that will be used to provide the timeline for a named scroll progress timeline animation, which is progressed through by scrolling a scrollable element (scroller) between top and bottom (or left and right). scroll-timeline is set on the scroller that will provide the timeline. See CSS scroll-driven animations for more details.
8288
+ * The scroll-timeline-axis CSS property is used to specify the scrollbar direction that will be used to provide the timeline for a scroll driven animation animation, which is progressed through by scrolling a scrollable element (scroller).
8275
8289
  *
8276
8290
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/scroll-timeline-axis)
8277
8291
  */
@@ -8679,7 +8693,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
8679
8693
  */
8680
8694
  verticalAlign: string;
8681
8695
  /**
8682
- * The view-timeline CSS shorthand property is used to define a named view progress timeline, which is progressed through based on the change in visibility of an element (known as the subject) inside a scrollable element (scroller). view-timeline is set on the subject.
8696
+ * The view-timeline CSS shorthand property defines a named view progress timeline's name, direction, and inset values.
8683
8697
  *
8684
8698
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/view-timeline)
8685
8699
  */
@@ -9236,7 +9250,7 @@ interface CSSStyleRule extends CSSGroupingRule {
9236
9250
  */
9237
9251
  selectorText: string;
9238
9252
  /**
9239
- * The read-only **`style`** property is a CSSStyleProperties object that represents the inline styles of a style rule (CSSStyleRule).
9253
+ * The read-only **`style`** property of the CSSStyleRule interface contains a CSSStyleProperties object representing the properties list in this style rule's body.
9240
9254
  *
9241
9255
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleRule/style)
9242
9256
  */
@@ -10292,14 +10306,14 @@ declare var CompositionEvent: {
10292
10306
  };
10293
10307
 
10294
10308
  /**
10295
- * The **`CompressionStream`** interface of the Compression Streams API is an API for compressing a stream of data.
10309
+ * The **`CompressionStream`** interface of the Compression Streams API compresses a stream of data. It implements the same shape as a TransformStream, allowing it to be used in ReadableStream.pipeThrough() and similar methods.
10296
10310
  *
10297
10311
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompressionStream)
10298
10312
  */
10299
10313
  interface CompressionStream extends GenericTransformStream {
10300
- /** The **`readable`** read-only property of the CompressionStream interface returns a ReadableStream. */
10314
+ /** The **`readable`** read-only property of the CompressionStream interface returns a ReadableStream that emits compressed data as Uint8Array chunks. */
10301
10315
  readonly readable: ReadableStream<Uint8Array>;
10302
- /** The **`writable`** read-only property of the CompressionStream interface returns a WritableStream. */
10316
+ /** The **`writable`** read-only property of the CompressionStream interface returns a WritableStream that accepts uncompressed data to be compressed, in the form of ArrayBuffer, TypedArray, or DataView chunks. */
10303
10317
  readonly writable: WritableStream<BufferSource>;
10304
10318
  }
10305
10319
 
@@ -11775,14 +11789,14 @@ declare var DataTransferItemList: {
11775
11789
  };
11776
11790
 
11777
11791
  /**
11778
- * The **`DecompressionStream`** interface of the Compression Streams API is an API for decompressing a stream of data.
11792
+ * The **`DecompressionStream`** interface of the Compression Streams API decompresses a stream of data. It implements the same shape as a TransformStream, allowing it to be used in ReadableStream.pipeThrough() and similar methods.
11779
11793
  *
11780
11794
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DecompressionStream)
11781
11795
  */
11782
11796
  interface DecompressionStream extends GenericTransformStream {
11783
- /** The **`readable`** read-only property of the DecompressionStream interface returns a ReadableStream. */
11797
+ /** The **`readable`** read-only property of the DecompressionStream interface returns a ReadableStream that emits decompressed data as Uint8Array chunks. */
11784
11798
  readonly readable: ReadableStream<Uint8Array>;
11785
- /** The **`writable`** read-only property of the DecompressionStream interface returns a WritableStream. */
11799
+ /** The **`writable`** read-only property of the DecompressionStream interface returns a WritableStream that accepts compressed data to be decompressed, in the form of ArrayBuffer, TypedArray, or DataView chunks. */
11786
11800
  readonly writable: WritableStream<BufferSource>;
11787
11801
  }
11788
11802
 
@@ -12183,7 +12197,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
12183
12197
  */
12184
12198
  readonly links: HTMLCollectionOf<HTMLAnchorElement | HTMLAreaElement>;
12185
12199
  /**
12186
- * The **`Document.location`** read-only property returns a Location object, which contains information about the URL of the document and provides methods for changing that URL and loading another URL.
12200
+ * The read-only **`location`** property of the Document interface returns a Location object, which contains information about the URL of the document and provides methods for changing that URL and loading another URL.
12187
12201
  *
12188
12202
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/location)
12189
12203
  */
@@ -12537,7 +12551,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
12537
12551
  */
12538
12552
  hasStorageAccess(): Promise<boolean>;
12539
12553
  /**
12540
- * The Document object's **`importNode()`** method creates a copy of a Node or DocumentFragment from another document, to be inserted into the current document later.
12554
+ * The **`importNode()`** method of the Document interface creates a copy of a Node or DocumentFragment from another document, to be inserted into the current document later.
12541
12555
  *
12542
12556
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/importNode)
12543
12557
  */
@@ -12920,7 +12934,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
12920
12934
  */
12921
12935
  readonly attributes: NamedNodeMap;
12922
12936
  /**
12923
- * The **`Element.classList`** is a read-only property that returns a live DOMTokenList collection of the class attributes of the element. This can then be used to manipulate the class list.
12937
+ * The read-only **`classList`** property of the Element interface contains a live DOMTokenList collection representing the class attribute of the element. This can then be used to manipulate the class list.
12924
12938
  *
12925
12939
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/classList)
12926
12940
  */
@@ -12998,7 +13012,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
12998
13012
  outerHTML: string;
12999
13013
  readonly ownerDocument: Document;
13000
13014
  /**
13001
- * The **`part`** property of the Element interface represents the part identifier(s) of the element (i.e., set using the part attribute), returned as a DOMTokenList. These can be used to style parts of a shadow DOM, via the ::part pseudo-element.
13015
+ * The read-only **`part`** property of the Element interface contains a DOMTokenList object representing the part identifier(s) of the element. It reflects the element's part content attribute. These can be used to style parts of a shadow DOM, via the ::part pseudo-element.
13002
13016
  *
13003
13017
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/part)
13004
13018
  */
@@ -15295,7 +15309,7 @@ interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils {
15295
15309
  */
15296
15310
  rel: string;
15297
15311
  /**
15298
- * The **`HTMLAnchorElement.relList`** read-only property reflects the rel attribute. It is a live DOMTokenList containing the set of link types indicating the relationship between the resource represented by the <a> element and the current document.
15312
+ * The read-only **`relList`** property of the HTMLAnchorElement returns a live DOMTokenList object containing the set of link types indicating the relationship between the resource represented by the <a> element and the current document. It reflects the <a> element's rel content attribute.
15299
15313
  *
15300
15314
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/relList)
15301
15315
  */
@@ -15379,7 +15393,7 @@ interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
15379
15393
  */
15380
15394
  rel: string;
15381
15395
  /**
15382
- * The **`HTMLAreaElement.relList`** read-only property reflects the rel attribute. It is a live DOMTokenList containing the set of link types indicating the relationship between the resource represented by the <area> element and the current document.
15396
+ * The read-only **`relList`** property of the HTMLAreaElement returns a live DOMTokenList object containing the set of link types indicating the relationship between the resource represented by the <area> element and the current document. It reflects the <area> element's rel content attribute.
15383
15397
  *
15384
15398
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/relList)
15385
15399
  */
@@ -16104,13 +16118,13 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
16104
16118
  *
16105
16119
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/showPopover)
16106
16120
  */
16107
- showPopover(): void;
16121
+ showPopover(options?: ShowPopoverOptions): void;
16108
16122
  /**
16109
16123
  * The **`togglePopover()`** method of the HTMLElement interface toggles a popover element (i.e., one that has a valid popover attribute) between the hidden and showing states.
16110
16124
  *
16111
16125
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/togglePopover)
16112
16126
  */
16113
- togglePopover(options?: boolean): boolean;
16127
+ togglePopover(options?: TogglePopoverOptions | boolean): boolean;
16114
16128
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
16115
16129
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
16116
16130
  removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
@@ -16388,7 +16402,7 @@ interface HTMLFormElement extends HTMLElement {
16388
16402
  */
16389
16403
  rel: string;
16390
16404
  /**
16391
- * The **`relList`** read-only property of the HTMLFormElement interface reflects the rel attribute. It is a live DOMTokenList containing the set of link types indicating the relationship between the resource represented by the <form> element and the current document.
16405
+ * The read-only **`relList`** property of the HTMLFormElement returns a live DOMTokenList object containing the set of link types indicating the relationship between the resource represented by the <form> element and the current document. It reflects the <form> element's rel content attribute.
16392
16406
  *
16393
16407
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/relList)
16394
16408
  */
@@ -16745,7 +16759,7 @@ interface HTMLIFrameElement extends HTMLElement {
16745
16759
  */
16746
16760
  referrerPolicy: ReferrerPolicy;
16747
16761
  /**
16748
- * The **`sandbox`** read-only property of the HTMLIFrameElement interface returns a DOMTokenList indicating extra restrictions on the behavior of the nested content.
16762
+ * The read-only **`sandbox`** property of the HTMLIFrameElement returns a live DOMTokenList object indicating extra restrictions on the behavior of the nested content. It reflects the <iframe> element's sandbox content attribute.
16749
16763
  *
16750
16764
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/sandbox)
16751
16765
  */
@@ -16795,82 +16809,82 @@ declare var HTMLIFrameElement: {
16795
16809
  */
16796
16810
  interface HTMLImageElement extends HTMLElement {
16797
16811
  /**
16798
- * The obsolete **`align`** property of the HTMLImageElement interface is a string which indicates how to position the image relative to its container.
16812
+ * The deprecated **`align`** property of the HTMLImageElement interface is a string which indicates how to position the image relative to its container. It reflects the <img> element's align content attribute.
16799
16813
  * @deprecated
16800
16814
  *
16801
16815
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/align)
16802
16816
  */
16803
16817
  align: string;
16804
16818
  /**
16805
- * The HTMLImageElement property **`alt`** provides fallback (alternate) text to display when the image specified by the <img> element is not loaded.
16819
+ * The **`alt`** property of the HTMLImageElement interface provides fallback (alternate) text to display when the image specified by the <img> element is not displayed, whether because of an error, because the user has disabled the loading of images, or because the image hasn't finished loading yet. It reflects the <img> element's alt content attribute.
16806
16820
  *
16807
16821
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/alt)
16808
16822
  */
16809
16823
  alt: string;
16810
16824
  /**
16811
- * The obsolete HTMLImageElement property **`border`** specifies the number of pixels thick the border surrounding the image should be. A value of 0, the default, indicates that no border should be drawn.
16825
+ * The deprecated **`border`** property of the HTMLImageElement interface specifies the number of pixels thick the border surrounding the image should be. A value of 0, the default, indicates that no border should be drawn. It reflects the <img> element's border content attribute.
16812
16826
  * @deprecated
16813
16827
  *
16814
16828
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/border)
16815
16829
  */
16816
16830
  border: string;
16817
16831
  /**
16818
- * The read-only HTMLImageElement interface's **`complete`** attribute is a Boolean value which indicates whether or not the image has completely loaded.
16832
+ * The **`complete`** read-only property of the HTMLImageElement interface is a Boolean value indicating whether or not the image has completely loaded.
16819
16833
  *
16820
16834
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/complete)
16821
16835
  */
16822
16836
  readonly complete: boolean;
16823
16837
  /**
16824
- * The HTMLImageElement interface's **`crossOrigin`** attribute is a string which specifies the Cross-Origin Resource Sharing (CORS) setting to use when retrieving the image.
16838
+ * The **`crossOrigin`** property of the HTMLImageElement interface is a string which specifies the Cross-Origin Resource Sharing (CORS) setting to use when retrieving the image. It reflects the <img> element's crossorigin content attribute.
16825
16839
  *
16826
16840
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/crossOrigin)
16827
16841
  */
16828
16842
  crossOrigin: string | null;
16829
16843
  /**
16830
- * The read-only HTMLImageElement property **`currentSrc`** indicates the URL of the image which is currently presented in the <img> element it represents.
16844
+ * The **`currentSrc`** read-only property of the HTMLImageElement interface indicates the URL of the image selected by the browser to load.
16831
16845
  *
16832
16846
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/currentSrc)
16833
16847
  */
16834
16848
  readonly currentSrc: string;
16835
16849
  /**
16836
- * The **`decoding`** property of the HTMLImageElement interface provides a hint to the browser as to how it should decode the image. More specifically, whether it should wait for the image to be decoded before presenting other content updates or not.
16850
+ * The **`decoding`** property of the HTMLImageElement interface provides a hint to the browser as to how it should decode the image. More specifically, whether it should wait for the image to be decoded before presenting other content updates or not. It reflects the <img> element's decoding content attribute.
16837
16851
  *
16838
16852
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/decoding)
16839
16853
  */
16840
16854
  decoding: "async" | "sync" | "auto";
16841
16855
  /**
16842
- * The **`fetchPriority`** property of the HTMLImageElement interface represents a hint to the browser indicating how it should prioritize fetching a particular image relative to other images. It reflects the fetchpriority attribute of the corresponding <img> element.
16856
+ * The **`fetchPriority`** property of the HTMLImageElement interface represents a hint to the browser indicating how it should prioritize fetching a particular image relative to other images. It reflects the <img> element's fetchpriority content attribute.
16843
16857
  *
16844
16858
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/fetchPriority)
16845
16859
  */
16846
16860
  fetchPriority: "high" | "low" | "auto";
16847
16861
  /**
16848
- * The **`height`** property of the HTMLImageElement interface indicates the height at which the image is drawn, in CSS pixels if the image is being drawn or rendered to any visual medium such as the screen or a printer; otherwise, it's the natural, pixel density corrected height of the image.
16862
+ * The **`height`** property of the HTMLImageElement interface indicates the height at which the image is drawn, in CSS pixels, if the image is being drawn or rendered to any visual medium such as a screen or printer. Otherwise, it's the natural, pixel density-corrected height of the image.
16849
16863
  *
16850
16864
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/height)
16851
16865
  */
16852
16866
  height: number;
16853
16867
  /**
16854
- * The obsolete **`hspace`** property of the HTMLImageElement interface specifies the number of pixels of empty space to leave empty on the left and right sides of the <img> element when laying out the page.
16868
+ * The deprecated **`hspace`** property of the HTMLImageElement interface specifies the number of pixels of empty space to leave empty on the left and right sides of the <img> element when laying out the page. It reflects the <img> element's hspace content attribute.
16855
16869
  * @deprecated
16856
16870
  *
16857
16871
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/hspace)
16858
16872
  */
16859
16873
  hspace: number;
16860
16874
  /**
16861
- * The HTMLImageElement property **`isMap`** is a Boolean value which indicates that the image is to be used by a server-side image map. This may only be used on images located within an <a> element.
16875
+ * The **`isMap`** property of the HTMLImageElement interface indicates that the image is part of a server-side map. If so, the coordinates where the user clicked on the image are sent to the server. It reflects the <img> element's ismap content attribute. This attribute is allowed only if the <img> element is a descendant of an <a> element with a valid href attribute.
16862
16876
  *
16863
16877
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/isMap)
16864
16878
  */
16865
16879
  isMap: boolean;
16866
16880
  /**
16867
- * The HTMLImageElement property **`loading`** is a string whose value provides a hint to the user agent on how to handle the loading of the image which is currently outside the window's visual viewport.
16881
+ * The **`loading`** property of the HTMLImageElement interface provides a hint to the user agent on how to handle the loading of the image which is currently outside the window's visual viewport. This helps to optimize the loading of the document's contents by postponing loading the image until it's expected to be needed, rather than immediately during the initial page load. It reflects the <img> element's loading content attribute.
16868
16882
  *
16869
16883
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/loading)
16870
16884
  */
16871
16885
  loading: "eager" | "lazy";
16872
16886
  /**
16873
- * The deprecated property **`longDesc`** on the HTMLImageElement interface specifies the URL of a text or HTML file which contains a long-form description of the image. This can be used to provide optional added details beyond the short description provided in the title attribute.
16887
+ * The deprecated **`longDesc`** property of the HTMLImageElement interface specifies the URL of a text or HTML file which contains a long-form description of the image. This can be used to provide optional added details beyond the short description provided in the title attribute. It reflects the <img> element's longdesc content attribute.
16874
16888
  * @deprecated
16875
16889
  *
16876
16890
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/longDesc)
@@ -16879,81 +16893,81 @@ interface HTMLImageElement extends HTMLElement {
16879
16893
  /** @deprecated */
16880
16894
  lowsrc: string;
16881
16895
  /**
16882
- * The HTMLImageElement interface's deprecated **`name`** property specifies a name for the element. This has been replaced by the id property available on all elements.
16896
+ * The deprecated **`name`** property of the HTMLImageElement interface specifies a name for the element. It reflects the <img> element's name content attribute. It has been replaced by the id property available on all elements, and is kept only for compatibility reasons.
16883
16897
  * @deprecated
16884
16898
  *
16885
16899
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/name)
16886
16900
  */
16887
16901
  name: string;
16888
16902
  /**
16889
- * The HTMLImageElement interface's **`naturalHeight`** property is a read-only value which returns the intrinsic (natural), density-corrected height of the image in CSS pixels.
16903
+ * The read-only **`naturalHeight`** property of the HTMLImageElement interface returns the intrinsic (natural), density-corrected height of the image in CSS pixels.
16890
16904
  *
16891
16905
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/naturalHeight)
16892
16906
  */
16893
16907
  readonly naturalHeight: number;
16894
16908
  /**
16895
- * The HTMLImageElement interface's read-only **`naturalWidth`** property returns the intrinsic (natural), density-corrected width of the image in CSS pixels.
16909
+ * The read-only **`naturalWidth`** property of the HTMLImageElement interface returns the intrinsic (natural), density-corrected width of the image in CSS pixels.
16896
16910
  *
16897
16911
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/naturalWidth)
16898
16912
  */
16899
16913
  readonly naturalWidth: number;
16900
16914
  /**
16901
- * The **`HTMLImageElement.referrerPolicy`** property reflects the HTML referrerpolicy attribute of the <img> element defining which referrer is sent when fetching the resource.
16915
+ * The **`referrerPolicy`** property of the HTMLImageElement interface defining which referrer is sent when fetching the resource. It reflects the <img> element's referrerpolicy content attribute.
16902
16916
  *
16903
16917
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/referrerPolicy)
16904
16918
  */
16905
16919
  referrerPolicy: string;
16906
16920
  /**
16907
- * The HTMLImageElement property **`sizes`** allows you to specify the layout width of the image for each of a list of media conditions. This provides the ability to automatically select among different images—even images of different orientations or aspect ratios—as the document state changes to match different media conditions.
16921
+ * The **`sizes`** property of the HTMLImageElement interface allows you to specify the layout width of the image for each of a list of media queries. This provides the ability to automatically select among different images—even images of different orientations or aspect ratios—as the document state changes to match different media conditions. It reflects the <img> element's sizes content attribute.
16908
16922
  *
16909
16923
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/sizes)
16910
16924
  */
16911
16925
  sizes: string;
16912
16926
  /**
16913
- * The HTMLImageElement property **`src`**, which reflects the HTML src attribute, specifies the image to display in the <img> element.
16927
+ * The **`src`** property of the HTMLImageElement interface specifies the image to display in the <img> element. It reflects the <img> element's src content attribute.
16914
16928
  *
16915
16929
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/src)
16916
16930
  */
16917
16931
  src: string;
16918
16932
  /**
16919
- * The HTMLImageElement property **`srcset`** is a string which identifies one or more image candidate strings, separated using commas (,) each specifying image resources to use under given circumstances.
16933
+ * The **`srcset`** property of the HTMLImageElement interface identifies one or more image candidate strings, separated using commas (,), each specifying image resources to use under given circumstances. Each image candidate string contains an image URL and an optional width or pixel density descriptor that indicates the conditions under which that candidate should be used instead of the image specified by the src property. It reflects the <img> element's srcset content attribute.
16920
16934
  *
16921
16935
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/srcset)
16922
16936
  */
16923
16937
  srcset: string;
16924
16938
  /**
16925
- * The **`useMap`** property on the HTMLImageElement interface reflects the value of the HTML usemap attribute, which is a string providing the name of the client-side image map to apply to the image.
16939
+ * The **`useMap`** property of the HTMLImageElement interface providing the name of the client-side image map to apply to the image. It reflects the <img> element's usemap content attribute.
16926
16940
  *
16927
16941
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/useMap)
16928
16942
  */
16929
16943
  useMap: string;
16930
16944
  /**
16931
- * The obsolete **`vspace`** property of the HTMLImageElement interface specifies the number of pixels of empty space to leave empty on the top and bottom of the <img> element when laying out the page.
16945
+ * The deprecated **`vspace`** property of the HTMLImageElement interface specifies the number of pixels of empty space to leave empty on the top and bottom sides of the <img> element when laying out the page. It reflects the <img> element's vspace content attribute.
16932
16946
  * @deprecated
16933
16947
  *
16934
16948
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/vspace)
16935
16949
  */
16936
16950
  vspace: number;
16937
16951
  /**
16938
- * The **`width`** property of the HTMLImageElement interface indicates the width at which an image is drawn in CSS pixels if it's being drawn or rendered to any visual medium such as a screen or printer. Otherwise, it's the natural, pixel density-corrected width of the image.
16952
+ * The **`width`** property of the HTMLImageElement interface indicates the width at which the image is drawn, in CSS pixels, if the image is being drawn or rendered to any visual medium such as a screen or printer. Otherwise, it's the natural, pixel density-corrected width of the image.
16939
16953
  *
16940
16954
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/width)
16941
16955
  */
16942
16956
  width: number;
16943
16957
  /**
16944
- * The read-only HTMLImageElement property **`x`** indicates the x-coordinate of the <img> element's left border edge relative to the root element's origin.
16958
+ * The read-only **`x`** property of the HTMLImageElement interface indicates the x-coordinate of the <img> element's left border edge relative to the root element's origin.
16945
16959
  *
16946
16960
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/x)
16947
16961
  */
16948
16962
  readonly x: number;
16949
16963
  /**
16950
- * The read-onl**`y`** HTMLImageElement property y indicates the y-coordinate of the <img> element's top border edge relative to the root element's origin.
16964
+ * The read-onl**`y`** y property of the HTMLImageElement interface indicates the y-coordinate of the <img> element's top border edge relative to the root element's origin.
16951
16965
  *
16952
16966
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/y)
16953
16967
  */
16954
16968
  readonly y: number;
16955
16969
  /**
16956
- * The **`decode()`** method of the HTMLImageElement interface returns a Promise that resolves once the image is decoded and it is safe to append it to the DOM.
16970
+ * The **`decode()`** method of the HTMLImageElement interface returns a Promise that resolves once the image is decoded and is safe to be appended to the DOM.
16957
16971
  *
16958
16972
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/decode)
16959
16973
  */
@@ -17419,7 +17433,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
17419
17433
  */
17420
17434
  as: string;
17421
17435
  /**
17422
- * The **`blocking`** property of the HTMLLinkElement interface is a string indicating that certain operations should be blocked on the fetching of an external resource.
17436
+ * The read-only **`blocking`** property of the HTMLLinkElement returns a live DOMTokenList object containing the operations that should be blocked on the fetching of an external resource. It reflects the <link> element's blocking content attribute.
17423
17437
  *
17424
17438
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/blocking)
17425
17439
  */
@@ -17440,7 +17454,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
17440
17454
  */
17441
17455
  disabled: boolean;
17442
17456
  /**
17443
- * The **`fetchPriority`** property of the HTMLLinkElement interface represents a hint to the browser indicating how it should prioritize fetching a particular resource relative to other resources of the same type. It reflects the fetchpriority attribute of the corresponding <link> element.
17457
+ * The **`fetchPriority`** property of the HTMLLinkElement interface represents a hint to the browser indicating how it should prioritize fetching a particular resource relative to other resources of the same type. It reflects the <link> element's fetchpriority content attribute.
17444
17458
  *
17445
17459
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/fetchPriority)
17446
17460
  */
@@ -17494,7 +17508,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
17494
17508
  */
17495
17509
  rel: string;
17496
17510
  /**
17497
- * The **`relList`** read-only property of the HTMLLinkElement interface reflects the rel attribute. It is a live DOMTokenList containing the set of link types indicating the relationship between the resource represented by the <link> element and the current document.
17511
+ * The read-only **`relList`** property of the HTMLLinkElement returns a live DOMTokenList object containing the set of link types indicating the relationship between the resource represented by the <link> element and the current document. It reflects the <link> element's rel content attribute.
17498
17512
  *
17499
17513
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/relList)
17500
17514
  */
@@ -17503,7 +17517,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
17503
17517
  /** @deprecated */
17504
17518
  rev: string;
17505
17519
  /**
17506
- * The **`sizes`** read-only property of the HTMLLinkElement interfaces defines the sizes of the icons for visual media contained in the resource. It reflects the <link> element's sizes attribute, which takes a list of space-separated sizes, each in the format <width in pixels>x<height in pixels>, or the keyword any.
17520
+ * The read-only **`sizes`** property of the HTMLLinkElement interface defines the sizes of the icons for visual media contained in the resource. It reflects the <link> element's sizes attribute, which takes a list of space-separated sizes, each in the format <width in pixels>x<height in pixels>, or the keyword any.
17507
17521
  *
17508
17522
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/sizes)
17509
17523
  */
@@ -18379,7 +18393,7 @@ interface HTMLOutputElement extends HTMLElement {
18379
18393
  */
18380
18394
  readonly form: HTMLFormElement | null;
18381
18395
  /**
18382
- * The **`htmlFor`** property of the HTMLOutputElement interface is a string containing a space-separated list of other elements' ids, indicating that those elements contributed input values to (or otherwise affected) the calculation. It reflects the for attribute of the <output> element.
18396
+ * The read-only **`htmlFor`** property of the HTMLOutputElement returns a live DOMTokenList object containing a list of ids of those elements contributing input values to (or otherwise affected) the calculation. It reflects the <output> element's for content attribute.
18383
18397
  *
18384
18398
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/htmlFor)
18385
18399
  */
@@ -18615,7 +18629,7 @@ interface HTMLScriptElement extends HTMLElement {
18615
18629
  */
18616
18630
  async: boolean;
18617
18631
  /**
18618
- * The **`blocking`** property of the HTMLScriptElement interface is a string indicating that certain operations should be blocked on the fetching of the script.
18632
+ * The read-only **`blocking`** property of the HTMLScriptElement returns a live DOMTokenList object containing the operations that should be blocked on the fetching of an external resource. It reflects the <script> element's blocking content attribute.
18619
18633
  *
18620
18634
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/blocking)
18621
18635
  */
@@ -18638,7 +18652,7 @@ interface HTMLScriptElement extends HTMLElement {
18638
18652
  /** @deprecated */
18639
18653
  event: string;
18640
18654
  /**
18641
- * The **`fetchPriority`** property of the HTMLScriptElement interface represents a hint to the browser indicating how it should prioritize fetching an external script relative to other external scripts. It reflects the fetchpriority attribute of the <script> element.
18655
+ * The **`fetchPriority`** property of the HTMLScriptElement interface represents a hint to the browser indicating how it should prioritize fetching an external script relative to other external scripts. It reflects the <script> element's fetchpriority content attribute.
18642
18656
  *
18643
18657
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/fetchPriority)
18644
18658
  */
@@ -18991,7 +19005,7 @@ declare var HTMLSpanElement: {
18991
19005
  */
18992
19006
  interface HTMLStyleElement extends HTMLElement, LinkStyle {
18993
19007
  /**
18994
- * The **`blocking`** property of the HTMLStyleElement interface is a string indicating that certain operations should be blocked on the fetching of critical subresources.
19008
+ * The read-only **`blocking`** property of the HTMLStyleElement returns a live DOMTokenList object containing the operations that should be blocked on the fetching of an external resource. It reflects the <style> element's blocking content attribute.
18995
19009
  *
18996
19010
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLStyleElement/blocking)
18997
19011
  */
@@ -19537,7 +19551,7 @@ declare var HTMLTableSectionElement: {
19537
19551
  */
19538
19552
  interface HTMLTemplateElement extends HTMLElement {
19539
19553
  /**
19540
- * The **`HTMLTemplateElement.content`** property returns a <template> element's template contents (a DocumentFragment).
19554
+ * The **`content`** property of the HTMLTemplateElement interface returns the <template> element's template contents as a DocumentFragment. This content's ownerDocument is a separate Document from the one that contains the <template> element itself — unless the containing document is itself constructed for the purpose of holding template content.
19541
19555
  *
19542
19556
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/content)
19543
19557
  */
@@ -24016,7 +24030,7 @@ interface Node extends EventTarget {
24016
24030
  */
24017
24031
  appendChild<T extends Node>(node: T): T;
24018
24032
  /**
24019
- * The **`cloneNode()`** method of the Node interface returns a duplicate of the node on which this method was called. Its parameter controls if the subtree contained in a node is also cloned or not.
24033
+ * The **`cloneNode()`** method of the Node interface returns a duplicate of the node on which this method was called. Its parameter controls if the subtree contained in the node is also cloned or not.
24020
24034
  *
24021
24035
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/cloneNode)
24022
24036
  */
@@ -27025,7 +27039,7 @@ interface RTCEncodedVideoFrame {
27025
27039
  *
27026
27040
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/type)
27027
27041
  */
27028
- readonly type: RTCEncodedVideoFrameType;
27042
+ readonly type: EncodedVideoChunkType;
27029
27043
  /**
27030
27044
  * The **`getMetadata()`** method of the RTCEncodedVideoFrame interface returns an object containing the metadata associated with the frame.
27031
27045
  *
@@ -28659,7 +28673,7 @@ interface SVGAElement extends SVGGraphicsElement, SVGURIReference {
28659
28673
  */
28660
28674
  rel: string;
28661
28675
  /**
28662
- * The **`relList`** read-only property of the SVGAElement returns a live DOMTokenList reflecting the space-separated string <list-of-Link-Types> values of the rel attribute of the SVG <a> element.
28676
+ * The read-only **`relList`** property of the SVGAElement returns a live DOMTokenList reflecting the space-separated string <list-of-Link-Types> values of the rel attribute of the SVG <a> element.
28663
28677
  *
28664
28678
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAElement/relList)
28665
28679
  */
@@ -33939,7 +33953,7 @@ interface StyleSheet {
33939
33953
  */
33940
33954
  readonly href: string | null;
33941
33955
  /**
33942
- * The **`media`** property of the StyleSheet interface specifies the intended destination media for style information. It is a read-only, array-like MediaList object and can be removed with deleteMedium() and added with appendMedium().
33956
+ * The read-only **`media`** property of the StyleSheet interface contains a MediaList object representing the intended destination media for style information.
33943
33957
  *
33944
33958
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet/media)
33945
33959
  */
@@ -34252,14 +34266,14 @@ interface TextDecoderCommon {
34252
34266
  }
34253
34267
 
34254
34268
  /**
34255
- * The **`TextDecoderStream`** interface of the Encoding API converts a stream of text in a binary encoding, such as UTF-8 etc., to a stream of strings. It is the streaming equivalent of TextDecoder.
34269
+ * The **`TextDecoderStream`** interface of the Encoding API converts a stream of text in a binary encoding, such as UTF-8 etc., to a stream of strings. It is the streaming equivalent of TextDecoder. It implements the same shape as a TransformStream, allowing it to be used in ReadableStream.pipeThrough() and similar methods.
34256
34270
  *
34257
34271
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoderStream)
34258
34272
  */
34259
34273
  interface TextDecoderStream extends GenericTransformStream, TextDecoderCommon {
34260
- /** The **`readable`** read-only property of the TextDecoderStream interface returns a ReadableStream. */
34274
+ /** The **`readable`** read-only property of the TextDecoderStream interface returns a ReadableStream that emits decoded strings. */
34261
34275
  readonly readable: ReadableStream<string>;
34262
- /** The **`writable`** read-only property of the TextDecoderStream interface returns a WritableStream. */
34276
+ /** The **`writable`** read-only property of the TextDecoderStream interface returns a WritableStream that accepts binary data, in the form of ArrayBuffer, TypedArray, or DataView chunks (SharedArrayBuffer and its views are also allowed), to be decoded into strings. */
34263
34277
  readonly writable: WritableStream<BufferSource>;
34264
34278
  }
34265
34279
 
@@ -34303,14 +34317,14 @@ interface TextEncoderCommon {
34303
34317
  }
34304
34318
 
34305
34319
  /**
34306
- * The **`TextEncoderStream`** interface of the Encoding API converts a stream of strings into bytes in the UTF-8 encoding. It is the streaming equivalent of TextEncoder.
34320
+ * The **`TextEncoderStream`** interface of the Encoding API converts a stream of strings into bytes in the UTF-8 encoding. It is the streaming equivalent of TextEncoder. It implements the same shape as a TransformStream, allowing it to be used in ReadableStream.pipeThrough() and similar methods.
34307
34321
  *
34308
34322
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoderStream)
34309
34323
  */
34310
34324
  interface TextEncoderStream extends GenericTransformStream, TextEncoderCommon {
34311
- /** The **`readable`** read-only property of the TextEncoderStream interface returns a ReadableStream. */
34325
+ /** The **`readable`** read-only property of the TextEncoderStream interface returns a ReadableStream that emits encoded binary data as Uint8Array chunks. */
34312
34326
  readonly readable: ReadableStream<Uint8Array>;
34313
- /** The **`writable`** read-only property of the TextEncoderStream interface returns a WritableStream. */
34327
+ /** The **`writable`** read-only property of the TextEncoderStream interface returns a WritableStream that accepts strings to be encoded into binary data. */
34314
34328
  readonly writable: WritableStream<string>;
34315
34329
  }
34316
34330
 
@@ -34894,13 +34908,13 @@ declare var TrackEvent: {
34894
34908
  */
34895
34909
  interface TransformStream<I = any, O = any> {
34896
34910
  /**
34897
- * The **`readable`** read-only property of the TransformStream interface returns the ReadableStream instance controlled by this TransformStream.
34911
+ * The **`readable`** read-only property of the TransformStream interface returns the ReadableStream instance controlled by this TransformStream. This stream emits the transformed output data.
34898
34912
  *
34899
34913
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStream/readable)
34900
34914
  */
34901
34915
  readonly readable: ReadableStream<O>;
34902
34916
  /**
34903
- * The **`writable`** read-only property of the TransformStream interface returns the WritableStream instance controlled by this TransformStream.
34917
+ * The **`writable`** read-only property of the TransformStream interface returns the WritableStream instance controlled by this TransformStream. This stream accepts input data that will be transformed and emitted to the readable stream.
34904
34918
  *
34905
34919
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStream/writable)
34906
34920
  */
@@ -35975,7 +35989,7 @@ interface VisualViewportEventMap {
35975
35989
  }
35976
35990
 
35977
35991
  /**
35978
- * The **`VisualViewport`** interface of the Visual Viewport API represents the visual viewport for a given window. For a page containing iframes, each iframe, as well as the containing page, will have a unique window object. Each window on a page will have a unique VisualViewport representing the properties associated with that window.
35992
+ * The **`VisualViewport`** interface of the CSSOM view API represents the visual viewport for a given window. For a page containing iframes, each iframe, as well as the containing page, will have a unique window object. Each window on a page will have a unique VisualViewport representing the properties associated with that window.
35979
35993
  *
35980
35994
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/VisualViewport)
35981
35995
  */
@@ -39024,7 +39038,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
39024
39038
  */
39025
39039
  readonly length: number;
39026
39040
  /**
39027
- * The **`Window.location`** read-only property returns a Location object with information about the current location of the document.
39041
+ * The read-only **`location`** property of the Window interface returns a Location object with information about the current location of the document.
39028
39042
  *
39029
39043
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/location)
39030
39044
  */
@@ -41192,7 +41206,7 @@ declare var innerWidth: number;
41192
41206
  */
41193
41207
  declare var length: number;
41194
41208
  /**
41195
- * The **`Window.location`** read-only property returns a Location object with information about the current location of the document.
41209
+ * The read-only **`location`** property of the Window interface returns a Location object with information about the current location of the document.
41196
41210
  *
41197
41211
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/location)
41198
41212
  */
@@ -42080,7 +42094,6 @@ type RTCDataChannelState = "closed" | "closing" | "connecting" | "open";
42080
42094
  type RTCDegradationPreference = "balanced" | "maintain-framerate" | "maintain-resolution";
42081
42095
  type RTCDtlsRole = "client" | "server" | "unknown";
42082
42096
  type RTCDtlsTransportState = "closed" | "connected" | "connecting" | "failed" | "new";
42083
- type RTCEncodedVideoFrameType = "delta" | "empty" | "key";
42084
42097
  type RTCErrorDetailType = "data-channel-failure" | "dtls-failure" | "fingerprint-failure" | "hardware-encoder-error" | "hardware-encoder-not-available" | "sctp-failure" | "sdp-syntax-error";
42085
42098
  type RTCIceCandidateType = "host" | "prflx" | "relay" | "srflx";
42086
42099
  type RTCIceComponent = "rtcp" | "rtp";