@types/web 0.0.150 → 0.0.152

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/index.d.ts CHANGED
@@ -121,12 +121,29 @@ interface AuthenticationExtensionsClientInputs {
121
121
  credProps?: boolean;
122
122
  hmacCreateSecret?: boolean;
123
123
  minPinLength?: boolean;
124
+ prf?: AuthenticationExtensionsPRFInputs;
124
125
  }
125
126
 
126
127
  interface AuthenticationExtensionsClientOutputs {
127
128
  appid?: boolean;
128
129
  credProps?: CredentialPropertiesOutput;
129
130
  hmacCreateSecret?: boolean;
131
+ prf?: AuthenticationExtensionsPRFOutputs;
132
+ }
133
+
134
+ interface AuthenticationExtensionsPRFInputs {
135
+ eval?: AuthenticationExtensionsPRFValues;
136
+ evalByCredential?: Record<string, AuthenticationExtensionsPRFValues>;
137
+ }
138
+
139
+ interface AuthenticationExtensionsPRFOutputs {
140
+ enabled?: boolean;
141
+ results?: AuthenticationExtensionsPRFValues;
142
+ }
143
+
144
+ interface AuthenticationExtensionsPRFValues {
145
+ first: BufferSource;
146
+ second?: BufferSource;
130
147
  }
131
148
 
132
149
  interface AuthenticatorSelectionCriteria {
@@ -192,6 +209,10 @@ interface CanvasRenderingContext2DSettings {
192
209
  willReadFrequently?: boolean;
193
210
  }
194
211
 
212
+ interface CaretPositionFromPointOptions {
213
+ shadowRoots?: ShadowRoot[];
214
+ }
215
+
195
216
  interface ChannelMergerOptions extends AudioNodeOptions {
196
217
  numberOfInputs?: number;
197
218
  }
@@ -682,16 +703,6 @@ interface InputEventInit extends UIEventInit {
682
703
  targetRanges?: StaticRange[];
683
704
  }
684
705
 
685
- interface IntersectionObserverEntryInit {
686
- boundingClientRect: DOMRectInit;
687
- intersectionRatio: number;
688
- intersectionRect: DOMRectInit;
689
- isIntersecting: boolean;
690
- rootBounds: DOMRectInit | null;
691
- target: Element;
692
- time: DOMHighResTimeStamp;
693
- }
694
-
695
706
  interface IntersectionObserverInit {
696
707
  root?: Element | Document | null;
697
708
  rootMargin?: string;
@@ -901,6 +912,7 @@ interface MediaStreamTrackEventInit extends EventInit {
901
912
  interface MediaTrackCapabilities {
902
913
  aspectRatio?: DoubleRange;
903
914
  autoGainControl?: boolean[];
915
+ backgroundBlur?: boolean[];
904
916
  channelCount?: ULongRange;
905
917
  deviceId?: string;
906
918
  displaySurface?: string;
@@ -918,6 +930,7 @@ interface MediaTrackCapabilities {
918
930
  interface MediaTrackConstraintSet {
919
931
  aspectRatio?: ConstrainDouble;
920
932
  autoGainControl?: ConstrainBoolean;
933
+ backgroundBlur?: ConstrainBoolean;
921
934
  channelCount?: ConstrainULong;
922
935
  deviceId?: ConstrainDOMString;
923
936
  displaySurface?: ConstrainDOMString;
@@ -939,6 +952,7 @@ interface MediaTrackConstraints extends MediaTrackConstraintSet {
939
952
  interface MediaTrackSettings {
940
953
  aspectRatio?: number;
941
954
  autoGainControl?: boolean;
955
+ backgroundBlur?: boolean;
942
956
  channelCount?: number;
943
957
  deviceId?: string;
944
958
  displaySurface?: string;
@@ -956,6 +970,7 @@ interface MediaTrackSettings {
956
970
  interface MediaTrackSupportedConstraints {
957
971
  aspectRatio?: boolean;
958
972
  autoGainControl?: boolean;
973
+ backgroundBlur?: boolean;
959
974
  channelCount?: boolean;
960
975
  deviceId?: boolean;
961
976
  displaySurface?: boolean;
@@ -2213,7 +2228,9 @@ interface ARIAMixin {
2213
2228
  ariaAtomic: string | null;
2214
2229
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaAutoComplete) */
2215
2230
  ariaAutoComplete: string | null;
2231
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaBrailleLabel) */
2216
2232
  ariaBrailleLabel: string | null;
2233
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaBrailleRoleDescription) */
2217
2234
  ariaBrailleRoleDescription: string | null;
2218
2235
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaBusy) */
2219
2236
  ariaBusy: string | null;
@@ -2223,6 +2240,8 @@ interface ARIAMixin {
2223
2240
  ariaColCount: string | null;
2224
2241
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaColIndex) */
2225
2242
  ariaColIndex: string | null;
2243
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaColIndexText) */
2244
+ ariaColIndexText: string | null;
2226
2245
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaColSpan) */
2227
2246
  ariaColSpan: string | null;
2228
2247
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaCurrent) */
@@ -2270,6 +2289,8 @@ interface ARIAMixin {
2270
2289
  ariaRowCount: string | null;
2271
2290
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRowIndex) */
2272
2291
  ariaRowIndex: string | null;
2292
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRowIndexText) */
2293
+ ariaRowIndexText: string | null;
2273
2294
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRowSpan) */
2274
2295
  ariaRowSpan: string | null;
2275
2296
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaSelected) */
@@ -2796,7 +2817,6 @@ declare var AudioNode: {
2796
2817
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam)
2797
2818
  */
2798
2819
  interface AudioParam {
2799
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/automationRate) */
2800
2820
  automationRate: AutomationRate;
2801
2821
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AudioParam/defaultValue) */
2802
2822
  readonly defaultValue: number;
@@ -3084,7 +3104,11 @@ declare var BaseAudioContext: {
3084
3104
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BeforeUnloadEvent)
3085
3105
  */
3086
3106
  interface BeforeUnloadEvent extends Event {
3087
- /** @deprecated */
3107
+ /**
3108
+ * @deprecated
3109
+ *
3110
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BeforeUnloadEvent/returnValue)
3111
+ */
3088
3112
  returnValue: any;
3089
3113
  }
3090
3114
 
@@ -3130,6 +3154,8 @@ interface Blob {
3130
3154
  readonly type: string;
3131
3155
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/arrayBuffer) */
3132
3156
  arrayBuffer(): Promise<ArrayBuffer>;
3157
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/bytes) */
3158
+ bytes(): Promise<Uint8Array>;
3133
3159
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/slice) */
3134
3160
  slice(start?: number, end?: number, contentType?: string): Blob;
3135
3161
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/stream) */
@@ -3165,6 +3191,8 @@ interface Body {
3165
3191
  arrayBuffer(): Promise<ArrayBuffer>;
3166
3192
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/blob) */
3167
3193
  blob(): Promise<Blob>;
3194
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/bytes) */
3195
+ bytes(): Promise<Uint8Array>;
3168
3196
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/formData) */
3169
3197
  formData(): Promise<FormData>;
3170
3198
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/json) */
@@ -3392,7 +3420,7 @@ interface CSSImportRule extends CSSRule {
3392
3420
  readonly layerName: string | null;
3393
3421
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/media) */
3394
3422
  readonly media: MediaList;
3395
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/styleSheet) */
3423
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/stylesheet) */
3396
3424
  readonly styleSheet: CSSStyleSheet | null;
3397
3425
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/supportsText) */
3398
3426
  readonly supportsText: string | null;
@@ -3685,7 +3713,7 @@ declare var CSSPerspective: {
3685
3713
  interface CSSPropertyRule extends CSSRule {
3686
3714
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPropertyRule/inherits) */
3687
3715
  readonly inherits: boolean;
3688
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPropertyRule/initialValue) */
3716
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPropertyRule/initialvalue) */
3689
3717
  readonly initialValue: string | null;
3690
3718
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPropertyRule/name) */
3691
3719
  readonly name: string;
@@ -3798,8 +3826,11 @@ declare var CSSScale: {
3798
3826
  new(x: CSSNumberish, y: CSSNumberish, z?: CSSNumberish): CSSScale;
3799
3827
  };
3800
3828
 
3829
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScopeRule) */
3801
3830
  interface CSSScopeRule extends CSSGroupingRule {
3831
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScopeRule/end) */
3802
3832
  readonly end: string | null;
3833
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSScopeRule/start) */
3803
3834
  readonly start: string | null;
3804
3835
  }
3805
3836
 
@@ -3922,7 +3953,6 @@ interface CSSStyleDeclaration {
3922
3953
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-size) */
3923
3954
  backgroundSize: string;
3924
3955
  baselineShift: string;
3925
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/baseline-source) */
3926
3956
  baselineSource: string;
3927
3957
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/block-size) */
3928
3958
  blockSize: string;
@@ -4104,11 +4134,11 @@ interface CSSStyleDeclaration {
4104
4134
  columns: string;
4105
4135
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain) */
4106
4136
  contain: string;
4107
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-contain-intrinsic-block-size) */
4137
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-block-size) */
4108
4138
  containIntrinsicBlockSize: string;
4109
4139
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-height) */
4110
4140
  containIntrinsicHeight: string;
4111
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-contain-intrinsic-inline-size) */
4141
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-inline-size) */
4112
4142
  containIntrinsicInlineSize: string;
4113
4143
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-size) */
4114
4144
  containIntrinsicSize: string;
@@ -4136,7 +4166,9 @@ interface CSSStyleDeclaration {
4136
4166
  cssText: string;
4137
4167
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/cursor) */
4138
4168
  cursor: string;
4169
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/cx) */
4139
4170
  cx: string;
4171
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/cy) */
4140
4172
  cy: string;
4141
4173
  d: string;
4142
4174
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/direction) */
@@ -4486,6 +4518,7 @@ interface CSSStyleDeclaration {
4486
4518
  printColorAdjust: string;
4487
4519
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/quotes) */
4488
4520
  quotes: string;
4521
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/r) */
4489
4522
  r: string;
4490
4523
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/resize) */
4491
4524
  resize: string;
@@ -4495,9 +4528,13 @@ interface CSSStyleDeclaration {
4495
4528
  rotate: string;
4496
4529
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/row-gap) */
4497
4530
  rowGap: string;
4531
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/ruby-align) */
4532
+ rubyAlign: string;
4498
4533
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/ruby-position) */
4499
4534
  rubyPosition: string;
4535
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/rx) */
4500
4536
  rx: string;
4537
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/ry) */
4501
4538
  ry: string;
4502
4539
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scale) */
4503
4540
  scale: string;
@@ -4625,7 +4662,9 @@ interface CSSStyleDeclaration {
4625
4662
  textUnderlinePosition: string;
4626
4663
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-wrap) */
4627
4664
  textWrap: string;
4665
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-wrap-mode) */
4628
4666
  textWrapMode: string;
4667
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-wrap-style) */
4629
4668
  textWrapStyle: string;
4630
4669
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/top) */
4631
4670
  top: string;
@@ -5624,6 +5663,18 @@ interface CanvasUserInterface {
5624
5663
  drawFocusIfNeeded(path: Path2D, element: Element): void;
5625
5664
  }
5626
5665
 
5666
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CaretPosition) */
5667
+ interface CaretPosition {
5668
+ readonly offset: number;
5669
+ readonly offsetNode: Node;
5670
+ getClientRect(): DOMRect | null;
5671
+ }
5672
+
5673
+ declare var CaretPosition: {
5674
+ prototype: CaretPosition;
5675
+ new(): CaretPosition;
5676
+ };
5677
+
5627
5678
  /**
5628
5679
  * The ChannelMergerNode interface, often used in conjunction with its opposite, ChannelSplitterNode, reunites different mono inputs into a single output. Each input is used to fill a channel of the output. This is useful for accessing each channels separately, e.g. for performing channel mixing where gain must be separately controlled on each channel.
5629
5680
  *
@@ -5768,6 +5819,7 @@ interface ClipboardItem {
5768
5819
  declare var ClipboardItem: {
5769
5820
  prototype: ClipboardItem;
5770
5821
  new(items: Record<string, string | Blob | PromiseLike<string | Blob>>, options?: ClipboardItemOptions): ClipboardItem;
5822
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ClipboardItem/supports_static) */
5771
5823
  supports(type: string): boolean;
5772
5824
  };
5773
5825
 
@@ -5838,6 +5890,8 @@ declare var CompositionEvent: {
5838
5890
 
5839
5891
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompressionStream) */
5840
5892
  interface CompressionStream extends GenericTransformStream {
5893
+ readonly readable: ReadableStream<Uint8Array>;
5894
+ readonly writable: WritableStream<BufferSource>;
5841
5895
  }
5842
5896
 
5843
5897
  declare var CompressionStream: {
@@ -6142,27 +6196,49 @@ declare var DOMImplementation: {
6142
6196
 
6143
6197
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix) */
6144
6198
  interface DOMMatrix extends DOMMatrixReadOnly {
6199
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6145
6200
  a: number;
6201
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6146
6202
  b: number;
6203
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6147
6204
  c: number;
6205
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6148
6206
  d: number;
6207
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6149
6208
  e: number;
6209
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6150
6210
  f: number;
6211
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6151
6212
  m11: number;
6213
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6152
6214
  m12: number;
6215
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6153
6216
  m13: number;
6217
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6154
6218
  m14: number;
6219
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6155
6220
  m21: number;
6221
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6156
6222
  m22: number;
6223
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6157
6224
  m23: number;
6225
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6158
6226
  m24: number;
6227
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6159
6228
  m31: number;
6229
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6160
6230
  m32: number;
6231
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6161
6232
  m33: number;
6233
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6162
6234
  m34: number;
6235
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6163
6236
  m41: number;
6237
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6164
6238
  m42: number;
6239
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6165
6240
  m43: number;
6241
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6166
6242
  m44: number;
6167
6243
  invertSelf(): DOMMatrix;
6168
6244
  multiplySelf(other?: DOMMatrixInit): DOMMatrix;
@@ -6170,9 +6246,7 @@ interface DOMMatrix extends DOMMatrixReadOnly {
6170
6246
  rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
6171
6247
  rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
6172
6248
  rotateSelf(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
6173
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/scale3dSelf) */
6174
6249
  scale3dSelf(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
6175
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/scaleSelf) */
6176
6250
  scaleSelf(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
6177
6251
  setMatrixValue(transformList: string): DOMMatrix;
6178
6252
  skewXSelf(sx?: number): DOMMatrix;
@@ -6196,88 +6270,70 @@ declare var WebKitCSSMatrix: typeof DOMMatrix;
6196
6270
 
6197
6271
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly) */
6198
6272
  interface DOMMatrixReadOnly {
6199
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/a) */
6273
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6200
6274
  readonly a: number;
6201
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/b) */
6275
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6202
6276
  readonly b: number;
6203
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/c) */
6277
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6204
6278
  readonly c: number;
6205
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/d) */
6279
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6206
6280
  readonly d: number;
6207
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/e) */
6281
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6208
6282
  readonly e: number;
6209
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/f) */
6283
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6210
6284
  readonly f: number;
6211
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/is2D) */
6212
6285
  readonly is2D: boolean;
6213
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/isIdentity) */
6214
6286
  readonly isIdentity: boolean;
6215
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m11) */
6287
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6216
6288
  readonly m11: number;
6217
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m12) */
6289
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6218
6290
  readonly m12: number;
6219
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m13) */
6291
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6220
6292
  readonly m13: number;
6221
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m14) */
6293
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6222
6294
  readonly m14: number;
6223
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m21) */
6295
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6224
6296
  readonly m21: number;
6225
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m22) */
6297
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6226
6298
  readonly m22: number;
6227
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m23) */
6299
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6228
6300
  readonly m23: number;
6229
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m24) */
6301
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6230
6302
  readonly m24: number;
6231
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m31) */
6303
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6232
6304
  readonly m31: number;
6233
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m32) */
6305
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6234
6306
  readonly m32: number;
6235
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m33) */
6307
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6236
6308
  readonly m33: number;
6237
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m34) */
6309
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6238
6310
  readonly m34: number;
6239
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m41) */
6311
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6240
6312
  readonly m41: number;
6241
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m42) */
6313
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6242
6314
  readonly m42: number;
6243
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m43) */
6315
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6244
6316
  readonly m43: number;
6245
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/m44) */
6317
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly#instance_properties) */
6246
6318
  readonly m44: number;
6247
6319
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipX) */
6248
6320
  flipX(): DOMMatrix;
6249
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipY) */
6250
6321
  flipY(): DOMMatrix;
6251
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
6252
6322
  inverse(): DOMMatrix;
6253
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
6254
6323
  multiply(other?: DOMMatrixInit): DOMMatrix;
6255
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotate) */
6256
6324
  rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
6257
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotateAxisAngle) */
6258
6325
  rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
6259
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/rotateFromVector) */
6260
6326
  rotateFromVector(x?: number, y?: number): DOMMatrix;
6261
6327
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale) */
6262
6328
  scale(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
6263
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scale3d) */
6264
6329
  scale3d(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
6265
- /**
6266
- * @deprecated
6267
- *
6268
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/scaleNonUniform)
6269
- */
6330
+ /** @deprecated */
6270
6331
  scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
6271
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/skewX) */
6272
6332
  skewX(sx?: number): DOMMatrix;
6273
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/skewY) */
6274
6333
  skewY(sy?: number): DOMMatrix;
6275
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
6276
6334
  toFloat32Array(): Float32Array;
6277
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat64Array) */
6278
6335
  toFloat64Array(): Float64Array;
6279
6336
  toJSON(): any;
6280
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint) */
6281
6337
  transformPoint(point?: DOMPointInit): DOMPoint;
6282
6338
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
6283
6339
  translate(tx?: number, ty?: number, tz?: number): DOMMatrix;
@@ -6349,7 +6405,6 @@ interface DOMPointReadOnly {
6349
6405
  readonly y: number;
6350
6406
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/z) */
6351
6407
  readonly z: number;
6352
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/matrixTransform) */
6353
6408
  matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
6354
6409
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON) */
6355
6410
  toJSON(): any;
@@ -6364,15 +6419,10 @@ declare var DOMPointReadOnly: {
6364
6419
 
6365
6420
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad) */
6366
6421
  interface DOMQuad {
6367
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p1) */
6368
6422
  readonly p1: DOMPoint;
6369
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p2) */
6370
6423
  readonly p2: DOMPoint;
6371
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p3) */
6372
6424
  readonly p3: DOMPoint;
6373
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p4) */
6374
6425
  readonly p4: DOMPoint;
6375
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/getBounds) */
6376
6426
  getBounds(): DOMRect;
6377
6427
  toJSON(): any;
6378
6428
  }
@@ -6395,6 +6445,7 @@ interface DOMRect extends DOMRectReadOnly {
6395
6445
  declare var DOMRect: {
6396
6446
  prototype: DOMRect;
6397
6447
  new(x?: number, y?: number, width?: number, height?: number): DOMRect;
6448
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect/fromRect_static) */
6398
6449
  fromRect(other?: DOMRectInit): DOMRect;
6399
6450
  };
6400
6451
 
@@ -6735,6 +6786,8 @@ declare var DataTransferItemList: {
6735
6786
 
6736
6787
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DecompressionStream) */
6737
6788
  interface DecompressionStream extends GenericTransformStream {
6789
+ readonly readable: ReadableStream<Uint8Array>;
6790
+ readonly writable: WritableStream<BufferSource>;
6738
6791
  }
6739
6792
 
6740
6793
  declare var DecompressionStream: {
@@ -7139,12 +7192,10 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
7139
7192
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/adoptNode)
7140
7193
  */
7141
7194
  adoptNode<T extends Node>(node: T): T;
7142
- /**
7143
- * @deprecated
7144
- *
7145
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/captureEvents)
7146
- */
7195
+ /** @deprecated */
7147
7196
  captureEvents(): void;
7197
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/caretPositionFromPoint) */
7198
+ caretPositionFromPoint(x: number, y: number, options?: CaretPositionFromPointOptions): CaretPosition | null;
7148
7199
  /** @deprecated */
7149
7200
  caretRangeFromPoint(x: number, y: number): Range | null;
7150
7201
  /**
@@ -7434,8 +7485,6 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
7434
7485
  * Returns a Boolean value that indicates whether the specified command is in the indeterminate state.
7435
7486
  * @param commandId String that specifies a command identifier.
7436
7487
  * @deprecated
7437
- *
7438
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/queryCommandIndeterm)
7439
7488
  */
7440
7489
  queryCommandIndeterm(commandId: string): boolean;
7441
7490
  /**
@@ -7458,15 +7507,9 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
7458
7507
  * Returns the current value of the document, range, or current selection for the given command.
7459
7508
  * @param commandId String that specifies a command identifier.
7460
7509
  * @deprecated
7461
- *
7462
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/queryCommandValue)
7463
7510
  */
7464
7511
  queryCommandValue(commandId: string): string;
7465
- /**
7466
- * @deprecated
7467
- *
7468
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/releaseEvents)
7469
- */
7512
+ /** @deprecated */
7470
7513
  releaseEvents(): void;
7471
7514
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/requestStorageAccess) */
7472
7515
  requestStorageAccess(): Promise<void>;
@@ -7495,6 +7538,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
7495
7538
  declare var Document: {
7496
7539
  prototype: Document;
7497
7540
  new(): Document;
7541
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/parseHTMLUnsafe_static) */
7498
7542
  parseHTMLUnsafe(html: string): Document;
7499
7543
  };
7500
7544
 
@@ -7739,6 +7783,8 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
7739
7783
  readonly clientTop: number;
7740
7784
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/clientWidth) */
7741
7785
  readonly clientWidth: number;
7786
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/currentCSSZoom) */
7787
+ readonly currentCSSZoom: number;
7742
7788
  /**
7743
7789
  * Returns the value of element's id content attribute. Can be set to change it.
7744
7790
  *
@@ -7863,6 +7909,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
7863
7909
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
7864
7910
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
7865
7911
  getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
7912
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/getHTML) */
7866
7913
  getHTML(options?: GetHTMLOptions): string;
7867
7914
  /**
7868
7915
  * Returns true if element has an attribute whose qualified name is qualifiedName, and false otherwise.
@@ -7949,6 +7996,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
7949
7996
  setAttributeNode(attr: Attr): Attr | null;
7950
7997
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setAttributeNodeNS) */
7951
7998
  setAttributeNodeNS(attr: Attr): Attr | null;
7999
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setHTMLUnsafe) */
7952
8000
  setHTMLUnsafe(html: string): void;
7953
8001
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setPointerCapture) */
7954
8002
  setPointerCapture(pointerId: number): void;
@@ -8093,15 +8141,10 @@ declare var EncodedVideoChunk: {
8093
8141
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent)
8094
8142
  */
8095
8143
  interface ErrorEvent extends Event {
8096
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/colno) */
8097
8144
  readonly colno: number;
8098
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) */
8099
8145
  readonly error: any;
8100
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) */
8101
8146
  readonly filename: string;
8102
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/lineno) */
8103
8147
  readonly lineno: number;
8104
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) */
8105
8148
  readonly message: string;
8106
8149
  }
8107
8150
 
@@ -8357,23 +8400,11 @@ declare var EventTarget: {
8357
8400
  new(): EventTarget;
8358
8401
  };
8359
8402
 
8360
- /**
8361
- * @deprecated
8362
- *
8363
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/External)
8364
- */
8403
+ /** @deprecated */
8365
8404
  interface External {
8366
- /**
8367
- * @deprecated
8368
- *
8369
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/External/AddSearchProvider)
8370
- */
8405
+ /** @deprecated */
8371
8406
  AddSearchProvider(): void;
8372
- /**
8373
- * @deprecated
8374
- *
8375
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/External/IsSearchProviderInstalled)
8376
- */
8407
+ /** @deprecated */
8377
8408
  IsSearchProviderInstalled(): void;
8378
8409
  }
8379
8410
 
@@ -8714,7 +8745,7 @@ interface FontFaceSet extends EventTarget {
8714
8745
 
8715
8746
  declare var FontFaceSet: {
8716
8747
  prototype: FontFaceSet;
8717
- new(initialFaces: FontFace[]): FontFaceSet;
8748
+ new(): FontFaceSet;
8718
8749
  };
8719
8750
 
8720
8751
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFaceSetLoadEvent) */
@@ -8813,6 +8844,7 @@ interface Gamepad {
8813
8844
  readonly mapping: GamepadMappingType;
8814
8845
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/timestamp) */
8815
8846
  readonly timestamp: DOMHighResTimeStamp;
8847
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Gamepad/vibrationActuator) */
8816
8848
  readonly vibrationActuator: GamepadHapticActuator;
8817
8849
  }
8818
8850
 
@@ -8861,7 +8893,9 @@ declare var GamepadEvent: {
8861
8893
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadHapticActuator)
8862
8894
  */
8863
8895
  interface GamepadHapticActuator {
8896
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadHapticActuator/playEffect) */
8864
8897
  playEffect(type: GamepadHapticEffectType, params?: GamepadEffectParameters): Promise<GamepadHapticsResult>;
8898
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/GamepadHapticActuator/reset) */
8865
8899
  reset(): Promise<GamepadHapticsResult>;
8866
8900
  }
8867
8901
 
@@ -8916,6 +8950,7 @@ interface GeolocationCoordinates {
8916
8950
  readonly longitude: number;
8917
8951
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationCoordinates/speed) */
8918
8952
  readonly speed: number | null;
8953
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationCoordinates/toJSON) */
8919
8954
  toJSON(): any;
8920
8955
  }
8921
8956
 
@@ -8934,6 +8969,7 @@ interface GeolocationPosition {
8934
8969
  readonly coords: GeolocationCoordinates;
8935
8970
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationPosition/timestamp) */
8936
8971
  readonly timestamp: EpochTimeStamp;
8972
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/GeolocationPosition/toJSON) */
8937
8973
  toJSON(): any;
8938
8974
  }
8939
8975
 
@@ -9096,7 +9132,7 @@ interface GlobalEventHandlers {
9096
9132
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/blur_event)
9097
9133
  */
9098
9134
  onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
9099
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/cancel_event) */
9135
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/cancel_event) */
9100
9136
  oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
9101
9137
  /**
9102
9138
  * Occurs when playback is possible, but would require further buffering.
@@ -9284,7 +9320,7 @@ interface GlobalEventHandlers {
9284
9320
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadstart_event)
9285
9321
  */
9286
9322
  onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
9287
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/lostpointercapture_event) */
9323
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/lostpointercapture_event) */
9288
9324
  onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
9289
9325
  /**
9290
9326
  * Fires when the user clicks the object with either mouse button.
@@ -9553,15 +9589,11 @@ interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils {
9553
9589
  /**
9554
9590
  * Sets or retrieves the character set used to encode the object.
9555
9591
  * @deprecated
9556
- *
9557
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/charset)
9558
9592
  */
9559
9593
  charset: string;
9560
9594
  /**
9561
9595
  * Sets or retrieves the coordinates of the object.
9562
9596
  * @deprecated
9563
- *
9564
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/coords)
9565
9597
  */
9566
9598
  coords: string;
9567
9599
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/download) */
@@ -9575,8 +9607,6 @@ interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils {
9575
9607
  /**
9576
9608
  * Sets or retrieves the shape of the object.
9577
9609
  * @deprecated
9578
- *
9579
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/name)
9580
9610
  */
9581
9611
  name: string;
9582
9612
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/ping) */
@@ -9594,15 +9624,11 @@ interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils {
9594
9624
  /**
9595
9625
  * Sets or retrieves the relationship between the object and the destination of the link.
9596
9626
  * @deprecated
9597
- *
9598
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/rev)
9599
9627
  */
9600
9628
  rev: string;
9601
9629
  /**
9602
9630
  * Sets or retrieves the shape of the object.
9603
9631
  * @deprecated
9604
- *
9605
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/shape)
9606
9632
  */
9607
9633
  shape: string;
9608
9634
  /**
@@ -9636,25 +9662,14 @@ declare var HTMLAnchorElement: {
9636
9662
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement)
9637
9663
  */
9638
9664
  interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
9639
- /**
9640
- * Sets or retrieves a text alternative to the graphic.
9641
- *
9642
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/alt)
9643
- */
9665
+ /** Sets or retrieves a text alternative to the graphic. */
9644
9666
  alt: string;
9645
- /**
9646
- * Sets or retrieves the coordinates of the object.
9647
- *
9648
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/coords)
9649
- */
9667
+ /** Sets or retrieves the coordinates of the object. */
9650
9668
  coords: string;
9651
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/download) */
9652
9669
  download: string;
9653
9670
  /**
9654
9671
  * Sets or gets whether clicks in this region cause action.
9655
9672
  * @deprecated
9656
- *
9657
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/noHref)
9658
9673
  */
9659
9674
  noHref: boolean;
9660
9675
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/ping) */
@@ -9665,11 +9680,7 @@ interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
9665
9680
  rel: string;
9666
9681
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/relList) */
9667
9682
  readonly relList: DOMTokenList;
9668
- /**
9669
- * Sets or retrieves the shape of the object.
9670
- *
9671
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/shape)
9672
- */
9683
+ /** Sets or retrieves the shape of the object. */
9673
9684
  shape: string;
9674
9685
  /**
9675
9686
  * Sets or retrieves the window or frame at which to target content.
@@ -9714,8 +9725,6 @@ interface HTMLBRElement extends HTMLElement {
9714
9725
  /**
9715
9726
  * Sets or retrieves the side on which floating objects are not to be positioned when any IHTMLBlockElement is inserted into the document.
9716
9727
  * @deprecated
9717
- *
9718
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBRElement/clear)
9719
9728
  */
9720
9729
  clear: string;
9721
9730
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLBRElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -9767,41 +9776,17 @@ interface HTMLBodyElementEventMap extends HTMLElementEventMap, WindowEventHandle
9767
9776
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBodyElement)
9768
9777
  */
9769
9778
  interface HTMLBodyElement extends HTMLElement, WindowEventHandlers {
9770
- /**
9771
- * @deprecated
9772
- *
9773
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBodyElement/aLink)
9774
- */
9779
+ /** @deprecated */
9775
9780
  aLink: string;
9776
- /**
9777
- * @deprecated
9778
- *
9779
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBodyElement/background)
9780
- */
9781
+ /** @deprecated */
9781
9782
  background: string;
9782
- /**
9783
- * @deprecated
9784
- *
9785
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBodyElement/bgColor)
9786
- */
9783
+ /** @deprecated */
9787
9784
  bgColor: string;
9788
- /**
9789
- * @deprecated
9790
- *
9791
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBodyElement/link)
9792
- */
9785
+ /** @deprecated */
9793
9786
  link: string;
9794
- /**
9795
- * @deprecated
9796
- *
9797
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBodyElement/text)
9798
- */
9787
+ /** @deprecated */
9799
9788
  text: string;
9800
- /**
9801
- * @deprecated
9802
- *
9803
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLBodyElement/vLink)
9804
- */
9789
+ /** @deprecated */
9805
9790
  vLink: string;
9806
9791
  addEventListener<K extends keyof HTMLBodyElementEventMap>(type: K, listener: (this: HTMLBodyElement, ev: HTMLBodyElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
9807
9792
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -9822,49 +9807,21 @@ declare var HTMLBodyElement: {
9822
9807
  interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
9823
9808
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/disabled) */
9824
9809
  disabled: boolean;
9825
- /**
9826
- * Retrieves a reference to the form that the object is embedded in.
9827
- *
9828
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/form)
9829
- */
9810
+ /** Retrieves a reference to the form that the object is embedded in. */
9830
9811
  readonly form: HTMLFormElement | null;
9831
- /**
9832
- * Overrides the action attribute (where the data on a form is sent) on the parent form element.
9833
- *
9834
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formAction)
9835
- */
9812
+ /** Overrides the action attribute (where the data on a form is sent) on the parent form element. */
9836
9813
  formAction: string;
9837
- /**
9838
- * Used to override the encoding (formEnctype attribute) specified on the form element.
9839
- *
9840
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formEnctype)
9841
- */
9814
+ /** Used to override the encoding (formEnctype attribute) specified on the form element. */
9842
9815
  formEnctype: string;
9843
- /**
9844
- * Overrides the submit method attribute previously specified on a form element.
9845
- *
9846
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formMethod)
9847
- */
9816
+ /** Overrides the submit method attribute previously specified on a form element. */
9848
9817
  formMethod: string;
9849
- /**
9850
- * Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option.
9851
- *
9852
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formNoValidate)
9853
- */
9818
+ /** Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option. */
9854
9819
  formNoValidate: boolean;
9855
- /**
9856
- * Overrides the target attribute on a form element.
9857
- *
9858
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formTarget)
9859
- */
9820
+ /** Overrides the target attribute on a form element. */
9860
9821
  formTarget: string;
9861
9822
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/labels) */
9862
9823
  readonly labels: NodeListOf<HTMLLabelElement>;
9863
- /**
9864
- * Sets or retrieves the name of the object.
9865
- *
9866
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/name)
9867
- */
9824
+ /** Sets or retrieves the name of the object. */
9868
9825
  name: string;
9869
9826
  /**
9870
9827
  * Gets the classification and default behavior of the button.
@@ -9872,33 +9829,16 @@ interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
9872
9829
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/type)
9873
9830
  */
9874
9831
  type: "submit" | "reset" | "button";
9875
- /**
9876
- * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.
9877
- *
9878
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/validationMessage)
9879
- */
9832
+ /** Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting. */
9880
9833
  readonly validationMessage: string;
9881
- /**
9882
- * Returns a ValidityState object that represents the validity states of an element.
9883
- *
9884
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/validity)
9885
- */
9834
+ /** Returns a ValidityState object that represents the validity states of an element. */
9886
9835
  readonly validity: ValidityState;
9887
- /**
9888
- * Sets or retrieves the default or selected value of the control.
9889
- *
9890
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/value)
9891
- */
9836
+ /** Sets or retrieves the default or selected value of the control. */
9892
9837
  value: string;
9893
- /**
9894
- * Returns whether an element will successfully validate based on forms validation rules and constraints.
9895
- *
9896
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/willValidate)
9897
- */
9838
+ /** Returns whether an element will successfully validate based on forms validation rules and constraints. */
9898
9839
  readonly willValidate: boolean;
9899
9840
  /** Returns whether a form will validate when it is submitted, without having to submit it. */
9900
9841
  checkValidity(): boolean;
9901
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/reportValidity) */
9902
9842
  reportValidity(): boolean;
9903
9843
  /**
9904
9844
  * Sets a custom error message that is displayed when a form is submitted.
@@ -10016,11 +9956,7 @@ interface HTMLCollectionOf<T extends Element> extends HTMLCollectionBase {
10016
9956
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDListElement)
10017
9957
  */
10018
9958
  interface HTMLDListElement extends HTMLElement {
10019
- /**
10020
- * @deprecated
10021
- *
10022
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDListElement/compact)
10023
- */
9959
+ /** @deprecated */
10024
9960
  compact: boolean;
10025
9961
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDListElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
10026
9962
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -10058,11 +9994,7 @@ declare var HTMLDataElement: {
10058
9994
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDataListElement)
10059
9995
  */
10060
9996
  interface HTMLDataListElement extends HTMLElement {
10061
- /**
10062
- * Returns an HTMLCollection of the option elements of the datalist element.
10063
- *
10064
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDataListElement/options)
10065
- */
9997
+ /** Returns an HTMLCollection of the option elements of the datalist element. */
10066
9998
  readonly options: HTMLCollectionOf<HTMLOptionElement>;
10067
9999
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDataListElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
10068
10000
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -10149,8 +10081,6 @@ interface HTMLDivElement extends HTMLElement {
10149
10081
  /**
10150
10082
  * Sets or retrieves how the object is aligned with adjacent text.
10151
10083
  * @deprecated
10152
- *
10153
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDivElement/align)
10154
10084
  */
10155
10085
  align: string;
10156
10086
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLDivElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -10225,6 +10155,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
10225
10155
  title: string;
10226
10156
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/translate) */
10227
10157
  translate: boolean;
10158
+ writingSuggestions: string;
10228
10159
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attachInternals) */
10229
10160
  attachInternals(): ElementInternals;
10230
10161
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/click) */
@@ -10296,49 +10227,22 @@ declare var HTMLEmbedElement: {
10296
10227
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement)
10297
10228
  */
10298
10229
  interface HTMLFieldSetElement extends HTMLElement {
10299
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/disabled) */
10300
10230
  disabled: boolean;
10301
- /**
10302
- * Returns an HTMLCollection of the form controls in the element.
10303
- *
10304
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/elements)
10305
- */
10231
+ /** Returns an HTMLCollection of the form controls in the element. */
10306
10232
  readonly elements: HTMLCollection;
10307
- /**
10308
- * Retrieves a reference to the form that the object is embedded in.
10309
- *
10310
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/form)
10311
- */
10233
+ /** Retrieves a reference to the form that the object is embedded in. */
10312
10234
  readonly form: HTMLFormElement | null;
10313
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/name) */
10314
10235
  name: string;
10315
- /**
10316
- * Returns the string "fieldset".
10317
- *
10318
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/type)
10319
- */
10236
+ /** Returns the string "fieldset". */
10320
10237
  readonly type: string;
10321
- /**
10322
- * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.
10323
- *
10324
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/validationMessage)
10325
- */
10238
+ /** Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting. */
10326
10239
  readonly validationMessage: string;
10327
- /**
10328
- * Returns a ValidityState object that represents the validity states of an element.
10329
- *
10330
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/validity)
10331
- */
10240
+ /** Returns a ValidityState object that represents the validity states of an element. */
10332
10241
  readonly validity: ValidityState;
10333
- /**
10334
- * Returns whether an element will successfully validate based on forms validation rules and constraints.
10335
- *
10336
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/willValidate)
10337
- */
10242
+ /** Returns whether an element will successfully validate based on forms validation rules and constraints. */
10338
10243
  readonly willValidate: boolean;
10339
10244
  /** Returns whether a form will validate when it is submitted, without having to submit it. */
10340
10245
  checkValidity(): boolean;
10341
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFieldSetElement/reportValidity) */
10342
10246
  reportValidity(): boolean;
10343
10247
  /**
10344
10248
  * Sets a custom error message that is displayed when a form is submitted.
@@ -10433,11 +10337,7 @@ interface HTMLFormElement extends HTMLElement {
10433
10337
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/action)
10434
10338
  */
10435
10339
  action: string;
10436
- /**
10437
- * Specifies whether autocomplete is applied to an editable text field.
10438
- *
10439
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/autocomplete)
10440
- */
10340
+ /** Specifies whether autocomplete is applied to an editable text field. */
10441
10341
  autocomplete: AutoFillBase;
10442
10342
  /**
10443
10343
  * Retrieves a collection, in source order, of all controls in a given form.
@@ -10475,11 +10375,7 @@ interface HTMLFormElement extends HTMLElement {
10475
10375
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/name)
10476
10376
  */
10477
10377
  name: string;
10478
- /**
10479
- * Designates a form that is not validated when submitted.
10480
- *
10481
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/noValidate)
10482
- */
10378
+ /** Designates a form that is not validated when submitted. */
10483
10379
  noValidate: boolean;
10484
10380
  rel: string;
10485
10381
  readonly relList: DOMTokenList;
@@ -10489,11 +10385,7 @@ interface HTMLFormElement extends HTMLElement {
10489
10385
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/target)
10490
10386
  */
10491
10387
  target: string;
10492
- /**
10493
- * Returns whether a form will validate when it is submitted, without having to submit it.
10494
- *
10495
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/checkValidity)
10496
- */
10388
+ /** Returns whether a form will validate when it is submitted, without having to submit it. */
10497
10389
  checkValidity(): boolean;
10498
10390
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/reportValidity) */
10499
10391
  reportValidity(): boolean;
@@ -10524,80 +10416,56 @@ declare var HTMLFormElement: {
10524
10416
  new(): HTMLFormElement;
10525
10417
  };
10526
10418
 
10527
- /**
10528
- * @deprecated
10529
- *
10530
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement)
10531
- */
10419
+ /** @deprecated */
10532
10420
  interface HTMLFrameElement extends HTMLElement {
10533
10421
  /**
10534
10422
  * Retrieves the document object of the page or frame.
10535
10423
  * @deprecated
10536
- *
10537
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/contentDocument)
10538
10424
  */
10539
10425
  readonly contentDocument: Document | null;
10540
10426
  /**
10541
10427
  * Retrieves the object of the specified.
10542
10428
  * @deprecated
10543
- *
10544
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/contentWindow)
10545
10429
  */
10546
10430
  readonly contentWindow: WindowProxy | null;
10547
10431
  /**
10548
10432
  * Sets or retrieves whether to display a border for the frame.
10549
10433
  * @deprecated
10550
- *
10551
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/frameBorder)
10552
10434
  */
10553
10435
  frameBorder: string;
10554
10436
  /**
10555
10437
  * Sets or retrieves a URI to a long description of the object.
10556
10438
  * @deprecated
10557
- *
10558
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/longDesc)
10559
10439
  */
10560
10440
  longDesc: string;
10561
10441
  /**
10562
10442
  * Sets or retrieves the top and bottom margin heights before displaying the text in a frame.
10563
10443
  * @deprecated
10564
- *
10565
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/marginHeight)
10566
10444
  */
10567
10445
  marginHeight: string;
10568
10446
  /**
10569
10447
  * Sets or retrieves the left and right margin widths before displaying the text in a frame.
10570
10448
  * @deprecated
10571
- *
10572
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/marginWidth)
10573
10449
  */
10574
10450
  marginWidth: string;
10575
10451
  /**
10576
10452
  * Sets or retrieves the frame name.
10577
10453
  * @deprecated
10578
- *
10579
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/name)
10580
10454
  */
10581
10455
  name: string;
10582
10456
  /**
10583
10457
  * Sets or retrieves whether the user can resize the frame.
10584
10458
  * @deprecated
10585
- *
10586
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/noResize)
10587
10459
  */
10588
10460
  noResize: boolean;
10589
10461
  /**
10590
10462
  * Sets or retrieves whether the frame can be scrolled.
10591
10463
  * @deprecated
10592
- *
10593
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/scrolling)
10594
10464
  */
10595
10465
  scrolling: string;
10596
10466
  /**
10597
10467
  * Sets or retrieves a URL to be loaded by the object.
10598
10468
  * @deprecated
10599
- *
10600
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFrameElement/src)
10601
10469
  */
10602
10470
  src: string;
10603
10471
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLFrameElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -10706,8 +10574,6 @@ interface HTMLHeadingElement extends HTMLElement {
10706
10574
  /**
10707
10575
  * Sets or retrieves a value that indicates the table alignment.
10708
10576
  * @deprecated
10709
- *
10710
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLHeadingElement/align)
10711
10577
  */
10712
10578
  align: string;
10713
10579
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLHeadingElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -10844,8 +10710,6 @@ interface HTMLIFrameElement extends HTMLElement {
10844
10710
  /**
10845
10711
  * Sets or retrieves how the object is aligned with adjacent text.
10846
10712
  * @deprecated
10847
- *
10848
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/align)
10849
10713
  */
10850
10714
  align: string;
10851
10715
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/allow) */
@@ -10867,8 +10731,6 @@ interface HTMLIFrameElement extends HTMLElement {
10867
10731
  /**
10868
10732
  * Sets or retrieves whether to display a border for the frame.
10869
10733
  * @deprecated
10870
- *
10871
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/frameBorder)
10872
10734
  */
10873
10735
  frameBorder: string;
10874
10736
  /**
@@ -10882,22 +10744,16 @@ interface HTMLIFrameElement extends HTMLElement {
10882
10744
  /**
10883
10745
  * Sets or retrieves a URI to a long description of the object.
10884
10746
  * @deprecated
10885
- *
10886
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/longDesc)
10887
10747
  */
10888
10748
  longDesc: string;
10889
10749
  /**
10890
10750
  * Sets or retrieves the top and bottom margin heights before displaying the text in a frame.
10891
10751
  * @deprecated
10892
- *
10893
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/marginHeight)
10894
10752
  */
10895
10753
  marginHeight: string;
10896
10754
  /**
10897
10755
  * Sets or retrieves the left and right margin widths before displaying the text in a frame.
10898
10756
  * @deprecated
10899
- *
10900
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/marginWidth)
10901
10757
  */
10902
10758
  marginWidth: string;
10903
10759
  /**
@@ -10913,8 +10769,6 @@ interface HTMLIFrameElement extends HTMLElement {
10913
10769
  /**
10914
10770
  * Sets or retrieves whether the frame can be scrolled.
10915
10771
  * @deprecated
10916
- *
10917
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/scrolling)
10918
10772
  */
10919
10773
  scrolling: string;
10920
10774
  /**
@@ -11019,11 +10873,7 @@ interface HTMLImageElement extends HTMLElement {
11019
10873
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/longDesc)
11020
10874
  */
11021
10875
  longDesc: string;
11022
- /**
11023
- * @deprecated
11024
- *
11025
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/lowsrc)
11026
- */
10876
+ /** @deprecated */
11027
10877
  lowsrc: string;
11028
10878
  /**
11029
10879
  * Sets or retrieves the name of the object.
@@ -11107,22 +10957,14 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
11107
10957
  align: string;
11108
10958
  /** Sets or retrieves a text alternative to the graphic. */
11109
10959
  alt: string;
11110
- /**
11111
- * Specifies whether autocomplete is applied to an editable text field.
11112
- *
11113
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/autocomplete)
11114
- */
10960
+ /** Specifies whether autocomplete is applied to an editable text field. */
11115
10961
  autocomplete: AutoFill;
11116
10962
  capture: string;
11117
10963
  /** Sets or retrieves the state of the check box or radio button. */
11118
10964
  checked: boolean;
11119
10965
  /** Sets or retrieves the state of the check box or radio button. */
11120
10966
  defaultChecked: boolean;
11121
- /**
11122
- * Sets or retrieves the initial contents of the object.
11123
- *
11124
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/defaultValue)
11125
- */
10967
+ /** Sets or retrieves the initial contents of the object. */
11126
10968
  defaultValue: string;
11127
10969
  dirName: string;
11128
10970
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/disabled) */
@@ -11135,71 +10977,30 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
11135
10977
  files: FileList | null;
11136
10978
  /** Retrieves a reference to the form that the object is embedded in. */
11137
10979
  readonly form: HTMLFormElement | null;
11138
- /**
11139
- * Overrides the action attribute (where the data on a form is sent) on the parent form element.
11140
- *
11141
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formAction)
11142
- */
10980
+ /** Overrides the action attribute (where the data on a form is sent) on the parent form element. */
11143
10981
  formAction: string;
11144
- /**
11145
- * Used to override the encoding (formEnctype attribute) specified on the form element.
11146
- *
11147
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formEnctype)
11148
- */
10982
+ /** Used to override the encoding (formEnctype attribute) specified on the form element. */
11149
10983
  formEnctype: string;
11150
- /**
11151
- * Overrides the submit method attribute previously specified on a form element.
11152
- *
11153
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formMethod)
11154
- */
10984
+ /** Overrides the submit method attribute previously specified on a form element. */
11155
10985
  formMethod: string;
11156
- /**
11157
- * Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option.
11158
- *
11159
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formNoValidate)
11160
- */
10986
+ /** Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a "save draft"-type submit option. */
11161
10987
  formNoValidate: boolean;
11162
- /**
11163
- * Overrides the target attribute on a form element.
11164
- *
11165
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formTarget)
11166
- */
10988
+ /** Overrides the target attribute on a form element. */
11167
10989
  formTarget: string;
11168
- /**
11169
- * Sets or retrieves the height of the object.
11170
- *
11171
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/height)
11172
- */
10990
+ /** Sets or retrieves the height of the object. */
11173
10991
  height: number;
11174
10992
  /** When set, overrides the rendering of checkbox controls so that the current value is not visible. */
11175
10993
  indeterminate: boolean;
11176
10994
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/labels) */
11177
10995
  readonly labels: NodeListOf<HTMLLabelElement> | null;
11178
- /**
11179
- * Specifies the ID of a pre-defined datalist of options for an input element.
11180
- *
11181
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/list)
11182
- */
10996
+ /** Specifies the ID of a pre-defined datalist of options for an input element. */
11183
10997
  readonly list: HTMLDataListElement | null;
11184
- /**
11185
- * Defines the maximum acceptable value for an input element with type="number".When used with the min and step attributes, lets you control the range and increment (such as only even numbers) that the user can enter into an input field.
11186
- *
11187
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/max)
11188
- */
10998
+ /** Defines the maximum acceptable value for an input element with type="number".When used with the min and step attributes, lets you control the range and increment (such as only even numbers) that the user can enter into an input field. */
11189
10999
  max: string;
11190
- /**
11191
- * Sets or retrieves the maximum number of characters that the user can enter in a text control.
11192
- *
11193
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/maxLength)
11194
- */
11000
+ /** Sets or retrieves the maximum number of characters that the user can enter in a text control. */
11195
11001
  maxLength: number;
11196
- /**
11197
- * Defines the minimum acceptable value for an input element with type="number". When used with the max and step attributes, lets you control the range and increment (such as even numbers only) that the user can enter into an input field.
11198
- *
11199
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/min)
11200
- */
11002
+ /** Defines the minimum acceptable value for an input element with type="number". When used with the max and step attributes, lets you control the range and increment (such as even numbers only) that the user can enter into an input field. */
11201
11003
  min: string;
11202
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/minLength) */
11203
11004
  minLength: number;
11204
11005
  /**
11205
11006
  * Sets or retrieves the Boolean value indicating whether multiple items can be selected from a list.
@@ -11209,24 +11010,12 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
11209
11010
  multiple: boolean;
11210
11011
  /** Sets or retrieves the name of the object. */
11211
11012
  name: string;
11212
- /**
11213
- * Gets or sets a string containing a regular expression that the user's input must match.
11214
- *
11215
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/pattern)
11216
- */
11013
+ /** Gets or sets a string containing a regular expression that the user's input must match. */
11217
11014
  pattern: string;
11218
- /**
11219
- * Gets or sets a text string that is displayed in an input field as a hint or prompt to users as the format or type of information they need to enter.The text appears in an input field until the user puts focus on the field.
11220
- *
11221
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/placeholder)
11222
- */
11015
+ /** Gets or sets a text string that is displayed in an input field as a hint or prompt to users as the format or type of information they need to enter.The text appears in an input field until the user puts focus on the field. */
11223
11016
  placeholder: string;
11224
11017
  readOnly: boolean;
11225
- /**
11226
- * When present, marks an element that can't be submitted without a value.
11227
- *
11228
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/required)
11229
- */
11018
+ /** When present, marks an element that can't be submitted without a value. */
11230
11019
  required: boolean;
11231
11020
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionDirection) */
11232
11021
  selectionDirection: "forward" | "backward" | "none" | null;
@@ -11252,29 +11041,17 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
11252
11041
  *
11253
11042
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/type)
11254
11043
  */
11255
- type: string;
11256
- /**
11257
- * Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.
11258
- * @deprecated
11259
- */
11260
- useMap: string;
11261
- /**
11262
- * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.
11263
- *
11264
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/validationMessage)
11265
- */
11266
- readonly validationMessage: string;
11267
- /**
11268
- * Returns a ValidityState object that represents the validity states of an element.
11269
- *
11270
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/validity)
11271
- */
11272
- readonly validity: ValidityState;
11044
+ type: string;
11273
11045
  /**
11274
- * Returns the value of the data at the cursor's current position.
11275
- *
11276
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/value)
11046
+ * Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.
11047
+ * @deprecated
11277
11048
  */
11049
+ useMap: string;
11050
+ /** Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting. */
11051
+ readonly validationMessage: string;
11052
+ /** Returns a ValidityState object that represents the validity states of an element. */
11053
+ readonly validity: ValidityState;
11054
+ /** Returns the value of the data at the cursor's current position. */
11278
11055
  value: string;
11279
11056
  /** Returns a Date object representing the form control's value, if applicable; otherwise, returns null. Can be set, to change the value. Throws an "InvalidStateError" DOMException if the control isn't date- or time-based. */
11280
11057
  valueAsDate: Date | null;
@@ -11284,17 +11061,9 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
11284
11061
  readonly webkitEntries: ReadonlyArray<FileSystemEntry>;
11285
11062
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/webkitdirectory) */
11286
11063
  webkitdirectory: boolean;
11287
- /**
11288
- * Sets or retrieves the width of the object.
11289
- *
11290
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/width)
11291
- */
11064
+ /** Sets or retrieves the width of the object. */
11292
11065
  width: number;
11293
- /**
11294
- * Returns whether an element will successfully validate based on forms validation rules and constraints.
11295
- *
11296
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/willValidate)
11297
- */
11066
+ /** Returns whether an element will successfully validate based on forms validation rules and constraints. */
11298
11067
  readonly willValidate: boolean;
11299
11068
  /**
11300
11069
  * Returns whether a form will validate when it is submitted, without having to submit it.
@@ -11489,7 +11258,6 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
11489
11258
  * @deprecated
11490
11259
  */
11491
11260
  rev: string;
11492
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/sizes) */
11493
11261
  readonly sizes: DOMTokenList;
11494
11262
  /**
11495
11263
  * Sets or retrieves the window or frame at which to target content.
@@ -11684,7 +11452,6 @@ interface HTMLMediaElement extends HTMLElement {
11684
11452
  readonly networkState: number;
11685
11453
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/encrypted_event) */
11686
11454
  onencrypted: ((this: HTMLMediaElement, ev: MediaEncryptedEvent) => any) | null;
11687
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/waitingforkey_event) */
11688
11455
  onwaitingforkey: ((this: HTMLMediaElement, ev: Event) => any) | null;
11689
11456
  /**
11690
11457
  * Gets a flag that specifies whether playback is paused.
@@ -11698,11 +11465,7 @@ interface HTMLMediaElement extends HTMLElement {
11698
11465
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/playbackRate)
11699
11466
  */
11700
11467
  playbackRate: number;
11701
- /**
11702
- * Gets TimeRanges for the current media resource that has been played.
11703
- *
11704
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/played)
11705
- */
11468
+ /** Gets TimeRanges for the current media resource that has been played. */
11706
11469
  readonly played: TimeRanges;
11707
11470
  /**
11708
11471
  * Gets or sets a value indicating what data should be preloaded, if any.
@@ -11722,11 +11485,7 @@ interface HTMLMediaElement extends HTMLElement {
11722
11485
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/seekable)
11723
11486
  */
11724
11487
  readonly seekable: TimeRanges;
11725
- /**
11726
- * Gets a flag that indicates whether the client is currently moving to a new playback position in the media resource.
11727
- *
11728
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/seeking)
11729
- */
11488
+ /** Gets a flag that indicates whether the client is currently moving to a new playback position in the media resource. */
11730
11489
  readonly seeking: boolean;
11731
11490
  /**
11732
11491
  * Available only in secure contexts.
@@ -11750,7 +11509,6 @@ interface HTMLMediaElement extends HTMLElement {
11750
11509
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/volume)
11751
11510
  */
11752
11511
  volume: number;
11753
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/addTextTrack) */
11754
11512
  addTextTrack(kind: TextTrackKind, label?: string, language?: string): TextTrack;
11755
11513
  /**
11756
11514
  * Returns a string that specifies whether the client can play a given media resource type.
@@ -11821,11 +11579,7 @@ declare var HTMLMediaElement: {
11821
11579
 
11822
11580
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMenuElement) */
11823
11581
  interface HTMLMenuElement extends HTMLElement {
11824
- /**
11825
- * @deprecated
11826
- *
11827
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMenuElement/compact)
11828
- */
11582
+ /** @deprecated */
11829
11583
  compact: boolean;
11830
11584
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMenuElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
11831
11585
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -11888,19 +11642,13 @@ declare var HTMLMetaElement: {
11888
11642
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement)
11889
11643
  */
11890
11644
  interface HTMLMeterElement extends HTMLElement {
11891
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/high) */
11892
11645
  high: number;
11893
11646
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/labels) */
11894
11647
  readonly labels: NodeListOf<HTMLLabelElement>;
11895
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/low) */
11896
11648
  low: number;
11897
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/max) */
11898
11649
  max: number;
11899
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/min) */
11900
11650
  min: number;
11901
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/optimum) */
11902
11651
  optimum: number;
11903
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMeterElement/value) */
11904
11652
  value: number;
11905
11653
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMeterElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
11906
11654
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -11919,17 +11667,9 @@ declare var HTMLMeterElement: {
11919
11667
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLModElement)
11920
11668
  */
11921
11669
  interface HTMLModElement extends HTMLElement {
11922
- /**
11923
- * Sets or retrieves reference information about the object.
11924
- *
11925
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLModElement/cite)
11926
- */
11670
+ /** Sets or retrieves reference information about the object. */
11927
11671
  cite: string;
11928
- /**
11929
- * Sets or retrieves the date and time of a modification to the object.
11930
- *
11931
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLModElement/dateTime)
11932
- */
11672
+ /** Sets or retrieves the date and time of a modification to the object. */
11933
11673
  dateTime: string;
11934
11674
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLModElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
11935
11675
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -11948,11 +11688,7 @@ declare var HTMLModElement: {
11948
11688
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOListElement)
11949
11689
  */
11950
11690
  interface HTMLOListElement extends HTMLElement {
11951
- /**
11952
- * @deprecated
11953
- *
11954
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOListElement/compact)
11955
- */
11691
+ /** @deprecated */
11956
11692
  compact: boolean;
11957
11693
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOListElement/reversed) */
11958
11694
  reversed: boolean;
@@ -11981,44 +11717,28 @@ declare var HTMLOListElement: {
11981
11717
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement)
11982
11718
  */
11983
11719
  interface HTMLObjectElement extends HTMLElement {
11984
- /**
11985
- * @deprecated
11986
- *
11987
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/align)
11988
- */
11720
+ /** @deprecated */
11989
11721
  align: string;
11990
11722
  /**
11991
11723
  * Sets or retrieves a character string that can be used to implement your own archive functionality for the object.
11992
11724
  * @deprecated
11993
- *
11994
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/archive)
11995
11725
  */
11996
11726
  archive: string;
11997
- /**
11998
- * @deprecated
11999
- *
12000
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/border)
12001
- */
11727
+ /** @deprecated */
12002
11728
  border: string;
12003
11729
  /**
12004
11730
  * Sets or retrieves the URL of the file containing the compiled Java class.
12005
11731
  * @deprecated
12006
- *
12007
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/code)
12008
11732
  */
12009
11733
  code: string;
12010
11734
  /**
12011
11735
  * Sets or retrieves the URL of the component.
12012
11736
  * @deprecated
12013
- *
12014
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/codeBase)
12015
11737
  */
12016
11738
  codeBase: string;
12017
11739
  /**
12018
11740
  * Sets or retrieves the Internet media type for the code associated with the object.
12019
11741
  * @deprecated
12020
- *
12021
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/codeType)
12022
11742
  */
12023
11743
  codeType: string;
12024
11744
  /**
@@ -12035,11 +11755,7 @@ interface HTMLObjectElement extends HTMLElement {
12035
11755
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/data)
12036
11756
  */
12037
11757
  data: string;
12038
- /**
12039
- * @deprecated
12040
- *
12041
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/declare)
12042
- */
11758
+ /** @deprecated */
12043
11759
  declare: boolean;
12044
11760
  /**
12045
11761
  * Retrieves a reference to the form that the object is embedded in.
@@ -12053,11 +11769,7 @@ interface HTMLObjectElement extends HTMLElement {
12053
11769
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/height)
12054
11770
  */
12055
11771
  height: string;
12056
- /**
12057
- * @deprecated
12058
- *
12059
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/hspace)
12060
- */
11772
+ /** @deprecated */
12061
11773
  hspace: number;
12062
11774
  /**
12063
11775
  * Sets or retrieves the name of the object.
@@ -12068,8 +11780,6 @@ interface HTMLObjectElement extends HTMLElement {
12068
11780
  /**
12069
11781
  * Sets or retrieves a message to be displayed while an object is loading.
12070
11782
  * @deprecated
12071
- *
12072
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/standby)
12073
11783
  */
12074
11784
  standby: string;
12075
11785
  /**
@@ -12097,11 +11807,7 @@ interface HTMLObjectElement extends HTMLElement {
12097
11807
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/validity)
12098
11808
  */
12099
11809
  readonly validity: ValidityState;
12100
- /**
12101
- * @deprecated
12102
- *
12103
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/vspace)
12104
- */
11810
+ /** @deprecated */
12105
11811
  vspace: number;
12106
11812
  /**
12107
11813
  * Sets or retrieves the width of the object.
@@ -12121,9 +11827,7 @@ interface HTMLObjectElement extends HTMLElement {
12121
11827
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/checkValidity)
12122
11828
  */
12123
11829
  checkValidity(): boolean;
12124
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/getSVGDocument) */
12125
11830
  getSVGDocument(): Document | null;
12126
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/reportValidity) */
12127
11831
  reportValidity(): boolean;
12128
11832
  /**
12129
11833
  * Sets a custom error message that is displayed when a form is submitted.
@@ -12149,13 +11853,8 @@ declare var HTMLObjectElement: {
12149
11853
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptGroupElement)
12150
11854
  */
12151
11855
  interface HTMLOptGroupElement extends HTMLElement {
12152
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptGroupElement/disabled) */
12153
11856
  disabled: boolean;
12154
- /**
12155
- * Sets or retrieves a value that you can use to implement your own label functionality for the object.
12156
- *
12157
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptGroupElement/label)
12158
- */
11857
+ /** Sets or retrieves a value that you can use to implement your own label functionality for the object. */
12159
11858
  label: string;
12160
11859
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOptGroupElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
12161
11860
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -12174,49 +11873,20 @@ declare var HTMLOptGroupElement: {
12174
11873
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement)
12175
11874
  */
12176
11875
  interface HTMLOptionElement extends HTMLElement {
12177
- /**
12178
- * Sets or retrieves the status of an option.
12179
- *
12180
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/defaultSelected)
12181
- */
11876
+ /** Sets or retrieves the status of an option. */
12182
11877
  defaultSelected: boolean;
12183
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/disabled) */
12184
11878
  disabled: boolean;
12185
- /**
12186
- * Retrieves a reference to the form that the object is embedded in.
12187
- *
12188
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/form)
12189
- */
11879
+ /** Retrieves a reference to the form that the object is embedded in. */
12190
11880
  readonly form: HTMLFormElement | null;
12191
- /**
12192
- * Sets or retrieves the ordinal position of an option in a list box.
12193
- *
12194
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/index)
12195
- */
11881
+ /** Sets or retrieves the ordinal position of an option in a list box. */
12196
11882
  readonly index: number;
12197
- /**
12198
- * Sets or retrieves a value that you can use to implement your own label functionality for the object.
12199
- *
12200
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/label)
12201
- */
11883
+ /** Sets or retrieves a value that you can use to implement your own label functionality for the object. */
12202
11884
  label: string;
12203
- /**
12204
- * Sets or retrieves whether the option in the list box is the default item.
12205
- *
12206
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/selected)
12207
- */
11885
+ /** Sets or retrieves whether the option in the list box is the default item. */
12208
11886
  selected: boolean;
12209
- /**
12210
- * Sets or retrieves the text string specified by the option tag.
12211
- *
12212
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/text)
12213
- */
11887
+ /** Sets or retrieves the text string specified by the option tag. */
12214
11888
  text: string;
12215
- /**
12216
- * Sets or retrieves the value which is returned to the server when the form control is submitted.
12217
- *
12218
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionElement/value)
12219
- */
11889
+ /** Sets or retrieves the value which is returned to the server when the form control is submitted. */
12220
11890
  value: string;
12221
11891
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOptionElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
12222
11892
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -12241,16 +11911,12 @@ interface HTMLOptionsCollection extends HTMLCollectionOf<HTMLOptionElement> {
12241
11911
  * When set to a smaller number, truncates the number of option elements in the corresponding container.
12242
11912
  *
12243
11913
  * When set to a greater number, adds new blank option elements to that container.
12244
- *
12245
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionsCollection/length)
12246
11914
  */
12247
11915
  length: number;
12248
11916
  /**
12249
11917
  * Returns the index of the first selected item, if any, or −1 if there is no selected item.
12250
11918
  *
12251
11919
  * Can be set, to change the selection.
12252
- *
12253
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionsCollection/selectedIndex)
12254
11920
  */
12255
11921
  selectedIndex: number;
12256
11922
  /**
@@ -12261,15 +11927,9 @@ interface HTMLOptionsCollection extends HTMLCollectionOf<HTMLOptionElement> {
12261
11927
  * If before is omitted, null, or a number out of range, then element will be added at the end of the list.
12262
11928
  *
12263
11929
  * This method will throw a "HierarchyRequestError" DOMException if element is an ancestor of the element into which it is to be inserted.
12264
- *
12265
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionsCollection/add)
12266
11930
  */
12267
11931
  add(element: HTMLOptionElement | HTMLOptGroupElement, before?: HTMLElement | number | null): void;
12268
- /**
12269
- * Removes the item with index index from the collection.
12270
- *
12271
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionsCollection/remove)
12272
- */
11932
+ /** Removes the item with index index from the collection. */
12273
11933
  remove(index: number): void;
12274
11934
  }
12275
11935
 
@@ -12299,41 +11959,25 @@ interface HTMLOrSVGElement {
12299
11959
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement)
12300
11960
  */
12301
11961
  interface HTMLOutputElement extends HTMLElement {
12302
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/defaultValue) */
12303
11962
  defaultValue: string;
12304
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/form) */
12305
11963
  readonly form: HTMLFormElement | null;
12306
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/htmlFor) */
12307
11964
  readonly htmlFor: DOMTokenList;
12308
11965
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/labels) */
12309
11966
  readonly labels: NodeListOf<HTMLLabelElement>;
12310
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/name) */
12311
11967
  name: string;
12312
- /**
12313
- * Returns the string "output".
12314
- *
12315
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/type)
12316
- */
11968
+ /** Returns the string "output". */
12317
11969
  readonly type: string;
12318
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/validationMessage) */
12319
11970
  readonly validationMessage: string;
12320
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/validity) */
12321
11971
  readonly validity: ValidityState;
12322
11972
  /**
12323
11973
  * Returns the element's current value.
12324
11974
  *
12325
11975
  * Can be set, to change the value.
12326
- *
12327
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/value)
12328
11976
  */
12329
11977
  value: string;
12330
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/willValidate) */
12331
11978
  readonly willValidate: boolean;
12332
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/checkValidity) */
12333
11979
  checkValidity(): boolean;
12334
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/reportValidity) */
12335
11980
  reportValidity(): boolean;
12336
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/setCustomValidity) */
12337
11981
  setCustomValidity(error: string): void;
12338
11982
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLOutputElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
12339
11983
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -12355,8 +11999,6 @@ interface HTMLParagraphElement extends HTMLElement {
12355
11999
  /**
12356
12000
  * Sets or retrieves how the object is aligned with adjacent text.
12357
12001
  * @deprecated
12358
- *
12359
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLParagraphElement/align)
12360
12002
  */
12361
12003
  align: string;
12362
12004
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLParagraphElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -12380,29 +12022,21 @@ interface HTMLParamElement extends HTMLElement {
12380
12022
  /**
12381
12023
  * Sets or retrieves the name of an input parameter for an element.
12382
12024
  * @deprecated
12383
- *
12384
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLParamElement/name)
12385
12025
  */
12386
12026
  name: string;
12387
12027
  /**
12388
12028
  * Sets or retrieves the content type of the resource designated by the value attribute.
12389
12029
  * @deprecated
12390
- *
12391
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLParamElement/type)
12392
12030
  */
12393
12031
  type: string;
12394
12032
  /**
12395
12033
  * Sets or retrieves the value of an input parameter for an element.
12396
12034
  * @deprecated
12397
- *
12398
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLParamElement/value)
12399
12035
  */
12400
12036
  value: string;
12401
12037
  /**
12402
12038
  * Sets or retrieves the data type of the value attribute.
12403
12039
  * @deprecated
12404
- *
12405
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLParamElement/valueType)
12406
12040
  */
12407
12041
  valueType: string;
12408
12042
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLParamElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -12443,8 +12077,6 @@ interface HTMLPreElement extends HTMLElement {
12443
12077
  /**
12444
12078
  * Sets or gets a value that you can use to implement your own width functionality for the object.
12445
12079
  * @deprecated
12446
- *
12447
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLPreElement/width)
12448
12080
  */
12449
12081
  width: number;
12450
12082
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLPreElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -12501,11 +12133,7 @@ declare var HTMLProgressElement: {
12501
12133
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLQuoteElement)
12502
12134
  */
12503
12135
  interface HTMLQuoteElement extends HTMLElement {
12504
- /**
12505
- * Sets or retrieves reference information about the object.
12506
- *
12507
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLQuoteElement/cite)
12508
- */
12136
+ /** Sets or retrieves reference information about the object. */
12509
12137
  cite: string;
12510
12138
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLQuoteElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
12511
12139
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -12594,7 +12222,6 @@ declare var HTMLScriptElement: {
12594
12222
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement)
12595
12223
  */
12596
12224
  interface HTMLSelectElement extends HTMLElement {
12597
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/autocomplete) */
12598
12225
  autocomplete: AutoFill;
12599
12226
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/disabled) */
12600
12227
  disabled: boolean;
@@ -12606,23 +12233,11 @@ interface HTMLSelectElement extends HTMLElement {
12606
12233
  readonly form: HTMLFormElement | null;
12607
12234
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/labels) */
12608
12235
  readonly labels: NodeListOf<HTMLLabelElement>;
12609
- /**
12610
- * Sets or retrieves the number of objects in a collection.
12611
- *
12612
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/length)
12613
- */
12236
+ /** Sets or retrieves the number of objects in a collection. */
12614
12237
  length: number;
12615
- /**
12616
- * Sets or retrieves the Boolean value indicating whether multiple items can be selected from a list.
12617
- *
12618
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/multiple)
12619
- */
12238
+ /** Sets or retrieves the Boolean value indicating whether multiple items can be selected from a list. */
12620
12239
  multiple: boolean;
12621
- /**
12622
- * Sets or retrieves the name of the object.
12623
- *
12624
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/name)
12625
- */
12240
+ /** Sets or retrieves the name of the object. */
12626
12241
  name: string;
12627
12242
  /**
12628
12243
  * Returns an HTMLOptionsCollection of the list of options.
@@ -12630,11 +12245,7 @@ interface HTMLSelectElement extends HTMLElement {
12630
12245
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/options)
12631
12246
  */
12632
12247
  readonly options: HTMLOptionsCollection;
12633
- /**
12634
- * When present, marks an element that can't be submitted without a value.
12635
- *
12636
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/required)
12637
- */
12248
+ /** When present, marks an element that can't be submitted without a value. */
12638
12249
  required: boolean;
12639
12250
  /**
12640
12251
  * Sets or retrieves the index of the selected option in a select object.
@@ -12644,11 +12255,7 @@ interface HTMLSelectElement extends HTMLElement {
12644
12255
  selectedIndex: number;
12645
12256
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/selectedOptions) */
12646
12257
  readonly selectedOptions: HTMLCollectionOf<HTMLOptionElement>;
12647
- /**
12648
- * Sets or retrieves the number of rows in the list box.
12649
- *
12650
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/size)
12651
- */
12258
+ /** Sets or retrieves the number of rows in the list box. */
12652
12259
  size: number;
12653
12260
  /**
12654
12261
  * Retrieves the type of select control based on the value of the MULTIPLE attribute.
@@ -12656,17 +12263,9 @@ interface HTMLSelectElement extends HTMLElement {
12656
12263
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/type)
12657
12264
  */
12658
12265
  readonly type: "select-one" | "select-multiple";
12659
- /**
12660
- * Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting.
12661
- *
12662
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/validationMessage)
12663
- */
12266
+ /** Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as "this is a required field". The result is that the user sees validation messages without actually submitting. */
12664
12267
  readonly validationMessage: string;
12665
- /**
12666
- * Returns a ValidityState object that represents the validity states of an element.
12667
- *
12668
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/validity)
12669
- */
12268
+ /** Returns a ValidityState object that represents the validity states of an element. */
12670
12269
  readonly validity: ValidityState;
12671
12270
  /**
12672
12271
  * Sets or retrieves the value which is returned to the server when the form control is submitted.
@@ -12674,11 +12273,7 @@ interface HTMLSelectElement extends HTMLElement {
12674
12273
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/value)
12675
12274
  */
12676
12275
  value: string;
12677
- /**
12678
- * Returns whether an element will successfully validate based on forms validation rules and constraints.
12679
- *
12680
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/willValidate)
12681
- */
12276
+ /** Returns whether an element will successfully validate based on forms validation rules and constraints. */
12682
12277
  readonly willValidate: boolean;
12683
12278
  /**
12684
12279
  * Adds an element to the areas, controlRange, or options collection.
@@ -12717,7 +12312,6 @@ interface HTMLSelectElement extends HTMLElement {
12717
12312
  */
12718
12313
  remove(): void;
12719
12314
  remove(index: number): void;
12720
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/reportValidity) */
12721
12315
  reportValidity(): boolean;
12722
12316
  /**
12723
12317
  * Sets a custom error message that is displayed when a form is submitted.
@@ -12769,27 +12363,13 @@ declare var HTMLSlotElement: {
12769
12363
  interface HTMLSourceElement extends HTMLElement {
12770
12364
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/height) */
12771
12365
  height: number;
12772
- /**
12773
- * Gets or sets the intended media type of the media source.
12774
- *
12775
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/media)
12776
- */
12366
+ /** Gets or sets the intended media type of the media source. */
12777
12367
  media: string;
12778
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/sizes) */
12779
12368
  sizes: string;
12780
- /**
12781
- * The address or URL of the a media resource that is to be considered.
12782
- *
12783
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/src)
12784
- */
12369
+ /** The address or URL of the a media resource that is to be considered. */
12785
12370
  src: string;
12786
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/srcset) */
12787
12371
  srcset: string;
12788
- /**
12789
- * Gets or sets the MIME type of a media resource.
12790
- *
12791
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/type)
12792
- */
12372
+ /** Gets or sets the MIME type of a media resource. */
12793
12373
  type: string;
12794
12374
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/width) */
12795
12375
  width: number;
@@ -12903,8 +12483,6 @@ interface HTMLTableCellElement extends HTMLElement {
12903
12483
  /**
12904
12484
  * Sets or retrieves a comma-delimited list of conceptual categories associated with the object.
12905
12485
  * @deprecated
12906
- *
12907
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/axis)
12908
12486
  */
12909
12487
  axis: string;
12910
12488
  /**
@@ -12946,8 +12524,6 @@ interface HTMLTableCellElement extends HTMLElement {
12946
12524
  /**
12947
12525
  * Sets or retrieves the height of the object.
12948
12526
  * @deprecated
12949
- *
12950
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/height)
12951
12527
  */
12952
12528
  height: string;
12953
12529
  /**
@@ -12978,8 +12554,6 @@ interface HTMLTableCellElement extends HTMLElement {
12978
12554
  /**
12979
12555
  * Sets or retrieves the width of the object.
12980
12556
  * @deprecated
12981
- *
12982
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableCellElement/width)
12983
12557
  */
12984
12558
  width: string;
12985
12559
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableCellElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -13033,8 +12607,6 @@ interface HTMLTableColElement extends HTMLElement {
13033
12607
  /**
13034
12608
  * Sets or retrieves the width of the object.
13035
12609
  * @deprecated
13036
- *
13037
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTableColElement/width)
13038
12610
  */
13039
12611
  width: string;
13040
12612
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLTableColElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -13408,7 +12980,6 @@ declare var HTMLTemplateElement: {
13408
12980
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement)
13409
12981
  */
13410
12982
  interface HTMLTextAreaElement extends HTMLElement {
13411
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/autocomplete) */
13412
12983
  autocomplete: AutoFill;
13413
12984
  /** Sets or retrieves the width of the object. */
13414
12985
  cols: number;
@@ -13438,7 +13009,6 @@ interface HTMLTextAreaElement extends HTMLElement {
13438
13009
  selectionEnd: number;
13439
13010
  /** Gets or sets the starting position or offset of a text selection. */
13440
13011
  selectionStart: number;
13441
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/textLength) */
13442
13012
  readonly textLength: number;
13443
13013
  /**
13444
13014
  * Retrieves the type of control.
@@ -13458,7 +13028,6 @@ interface HTMLTextAreaElement extends HTMLElement {
13458
13028
  wrap: string;
13459
13029
  /** Returns whether a form will validate when it is submitted, without having to submit it. */
13460
13030
  checkValidity(): boolean;
13461
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTextAreaElement/reportValidity) */
13462
13031
  reportValidity(): boolean;
13463
13032
  /** Highlights the input area of a form element. */
13464
13033
  select(): void;
@@ -13535,23 +13104,14 @@ declare var HTMLTitleElement: {
13535
13104
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement)
13536
13105
  */
13537
13106
  interface HTMLTrackElement extends HTMLElement {
13538
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/default) */
13539
13107
  default: boolean;
13540
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/kind) */
13541
13108
  kind: string;
13542
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/label) */
13543
13109
  label: string;
13544
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/readyState) */
13545
13110
  readonly readyState: number;
13546
13111
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/src) */
13547
13112
  src: string;
13548
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/srclang) */
13549
13113
  srclang: string;
13550
- /**
13551
- * Returns the TextTrack object corresponding to the text track of the track element.
13552
- *
13553
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/track)
13554
- */
13114
+ /** Returns the TextTrack object corresponding to the text track of the track element. */
13555
13115
  readonly track: TextTrack;
13556
13116
  readonly NONE: 0;
13557
13117
  readonly LOADING: 1;
@@ -13578,17 +13138,9 @@ declare var HTMLTrackElement: {
13578
13138
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLUListElement)
13579
13139
  */
13580
13140
  interface HTMLUListElement extends HTMLElement {
13581
- /**
13582
- * @deprecated
13583
- *
13584
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLUListElement/compact)
13585
- */
13141
+ /** @deprecated */
13586
13142
  compact: boolean;
13587
- /**
13588
- * @deprecated
13589
- *
13590
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLUListElement/type)
13591
- */
13143
+ /** @deprecated */
13592
13144
  type: string;
13593
13145
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLUListElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
13594
13146
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -14419,7 +13971,7 @@ interface IDBTransaction extends EventTarget {
14419
13971
  /**
14420
13972
  * Returns a list of the names of object stores in the transaction's scope. For an upgrade transaction this is all object stores in the database.
14421
13973
  *
14422
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/objectStoreNames)
13974
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/ObjectStoreNames)
14423
13975
  */
14424
13976
  readonly objectStoreNames: DOMStringList;
14425
13977
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/IDBTransaction/abort_event) */
@@ -14666,7 +14218,7 @@ interface IntersectionObserverEntry {
14666
14218
 
14667
14219
  declare var IntersectionObserverEntry: {
14668
14220
  prototype: IntersectionObserverEntry;
14669
- new(intersectionObserverEntryInit: IntersectionObserverEntryInit): IntersectionObserverEntry;
14221
+ new(): IntersectionObserverEntry;
14670
14222
  };
14671
14223
 
14672
14224
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/KHR_parallel_shader_compile) */
@@ -15347,6 +14899,7 @@ declare var MediaKeySystemAccess: {
15347
14899
  interface MediaKeys {
15348
14900
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeys/createSession) */
15349
14901
  createSession(sessionType?: MediaKeySessionType): MediaKeySession;
14902
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeys/getStatusForPolicy) */
15350
14903
  getStatusForPolicy(policy?: MediaKeysPolicy): Promise<MediaKeyStatus>;
15351
14904
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaKeys/setServerCertificate) */
15352
14905
  setServerCertificate(serverCertificate: BufferSource): Promise<boolean>;
@@ -15536,11 +15089,8 @@ interface MediaSource extends EventTarget {
15536
15089
  readonly activeSourceBuffers: SourceBufferList;
15537
15090
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/duration) */
15538
15091
  duration: number;
15539
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceclose_event) */
15540
15092
  onsourceclose: ((this: MediaSource, ev: Event) => any) | null;
15541
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceended_event) */
15542
15093
  onsourceended: ((this: MediaSource, ev: Event) => any) | null;
15543
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/sourceopen_event) */
15544
15094
  onsourceopen: ((this: MediaSource, ev: Event) => any) | null;
15545
15095
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaSource/readyState) */
15546
15096
  readonly readyState: ReadyState;
@@ -15783,11 +15333,7 @@ interface MessageEvent<T = any> extends Event {
15783
15333
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/source)
15784
15334
  */
15785
15335
  readonly source: MessageEventSource | null;
15786
- /**
15787
- * @deprecated
15788
- *
15789
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/initMessageEvent)
15790
- */
15336
+ /** @deprecated */
15791
15337
  initMessageEvent(type: string, bubbles?: boolean, cancelable?: boolean, data?: any, origin?: string, lastEventId?: string, source?: MessageEventSource | null, ports?: MessagePort[]): void;
15792
15338
  }
15793
15339
 
@@ -15853,29 +15399,21 @@ interface MimeType {
15853
15399
  /**
15854
15400
  * Returns the MIME type's description.
15855
15401
  * @deprecated
15856
- *
15857
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeType/description)
15858
15402
  */
15859
15403
  readonly description: string;
15860
15404
  /**
15861
15405
  * Returns the Plugin object that implements this MIME type.
15862
15406
  * @deprecated
15863
- *
15864
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeType/enabledPlugin)
15865
15407
  */
15866
15408
  readonly enabledPlugin: Plugin;
15867
15409
  /**
15868
15410
  * Returns the MIME type's typical file extensions, in a comma-separated list.
15869
15411
  * @deprecated
15870
- *
15871
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeType/suffixes)
15872
15412
  */
15873
15413
  readonly suffixes: string;
15874
15414
  /**
15875
15415
  * Returns the MIME type.
15876
15416
  * @deprecated
15877
- *
15878
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeType/type)
15879
15417
  */
15880
15418
  readonly type: string;
15881
15419
  }
@@ -15893,23 +15431,11 @@ declare var MimeType: {
15893
15431
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeTypeArray)
15894
15432
  */
15895
15433
  interface MimeTypeArray {
15896
- /**
15897
- * @deprecated
15898
- *
15899
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeTypeArray/length)
15900
- */
15434
+ /** @deprecated */
15901
15435
  readonly length: number;
15902
- /**
15903
- * @deprecated
15904
- *
15905
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeTypeArray/item)
15906
- */
15436
+ /** @deprecated */
15907
15437
  item(index: number): MimeType | null;
15908
- /**
15909
- * @deprecated
15910
- *
15911
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MimeTypeArray/namedItem)
15912
- */
15438
+ /** @deprecated */
15913
15439
  namedItem(name: string): MimeType | null;
15914
15440
  [index: number]: MimeType;
15915
15441
  }
@@ -16380,7 +15906,7 @@ interface NavigatorPlugins {
16380
15906
  /**
16381
15907
  * @deprecated
16382
15908
  *
16383
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigatorPlugins/mimeTypes)
15909
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/mimeTypes)
16384
15910
  */
16385
15911
  readonly mimeTypes: MimeTypeArray;
16386
15912
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Navigator/pdfViewerEnabled) */
@@ -16929,7 +16455,9 @@ interface OffscreenCanvas extends EventTarget {
16929
16455
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/height)
16930
16456
  */
16931
16457
  height: number;
16458
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/contextlost_event) */
16932
16459
  oncontextlost: ((this: OffscreenCanvas, ev: Event) => any) | null;
16460
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvas/contextrestored_event) */
16933
16461
  oncontextrestored: ((this: OffscreenCanvas, ev: Event) => any) | null;
16934
16462
  /**
16935
16463
  * These attributes return the dimensions of the OffscreenCanvas object's bitmap.
@@ -16980,6 +16508,7 @@ declare var OffscreenCanvas: {
16980
16508
 
16981
16509
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OffscreenCanvasRenderingContext2D) */
16982
16510
  interface OffscreenCanvasRenderingContext2D extends CanvasCompositing, CanvasDrawImage, CanvasDrawPath, CanvasFillStrokeStyles, CanvasFilters, CanvasImageData, CanvasImageSmoothing, CanvasPath, CanvasPathDrawingStyles, CanvasRect, CanvasShadowStyles, CanvasState, CanvasText, CanvasTextDrawingStyles, CanvasTransform {
16511
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/canvas) */
16983
16512
  readonly canvas: OffscreenCanvas;
16984
16513
  }
16985
16514
 
@@ -17568,6 +17097,8 @@ interface PerformanceResourceTiming extends PerformanceEntry {
17568
17097
  readonly responseEnd: DOMHighResTimeStamp;
17569
17098
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseStart) */
17570
17099
  readonly responseStart: DOMHighResTimeStamp;
17100
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/responseStatus) */
17101
+ readonly responseStatus: number;
17571
17102
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/secureConnectionStart) */
17572
17103
  readonly secureConnectionStart: DOMHighResTimeStamp;
17573
17104
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceResourceTiming/serverTiming) */
@@ -17840,15 +17371,11 @@ interface Plugin {
17840
17371
  /**
17841
17372
  * Returns the plugin's description.
17842
17373
  * @deprecated
17843
- *
17844
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Plugin/description)
17845
17374
  */
17846
17375
  readonly description: string;
17847
17376
  /**
17848
17377
  * Returns the plugin library's filename, if applicable on the current platform.
17849
17378
  * @deprecated
17850
- *
17851
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Plugin/filename)
17852
17379
  */
17853
17380
  readonly filename: string;
17854
17381
  /**
@@ -17859,22 +17386,14 @@ interface Plugin {
17859
17386
  /**
17860
17387
  * Returns the plugin's name.
17861
17388
  * @deprecated
17862
- *
17863
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Plugin/name)
17864
17389
  */
17865
17390
  readonly name: string;
17866
17391
  /**
17867
17392
  * Returns the specified MimeType object.
17868
17393
  * @deprecated
17869
- *
17870
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Plugin/item)
17871
17394
  */
17872
17395
  item(index: number): MimeType | null;
17873
- /**
17874
- * @deprecated
17875
- *
17876
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Plugin/namedItem)
17877
- */
17396
+ /** @deprecated */
17878
17397
  namedItem(name: string): MimeType | null;
17879
17398
  [index: number]: MimeType;
17880
17399
  }
@@ -17892,29 +17411,13 @@ declare var Plugin: {
17892
17411
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PluginArray)
17893
17412
  */
17894
17413
  interface PluginArray {
17895
- /**
17896
- * @deprecated
17897
- *
17898
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PluginArray/length)
17899
- */
17414
+ /** @deprecated */
17900
17415
  readonly length: number;
17901
- /**
17902
- * @deprecated
17903
- *
17904
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PluginArray/item)
17905
- */
17416
+ /** @deprecated */
17906
17417
  item(index: number): Plugin | null;
17907
- /**
17908
- * @deprecated
17909
- *
17910
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PluginArray/namedItem)
17911
- */
17418
+ /** @deprecated */
17912
17419
  namedItem(name: string): Plugin | null;
17913
- /**
17914
- * @deprecated
17915
- *
17916
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PluginArray/refresh)
17917
- */
17420
+ /** @deprecated */
17918
17421
  refresh(): void;
17919
17422
  [index: number]: Plugin;
17920
17423
  }
@@ -18048,6 +17551,7 @@ declare var PromiseRejectionEvent: {
18048
17551
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential)
18049
17552
  */
18050
17553
  interface PublicKeyCredential extends Credential {
17554
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/authenticatorAttachment) */
18051
17555
  readonly authenticatorAttachment: string | null;
18052
17556
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/rawId) */
18053
17557
  readonly rawId: ArrayBuffer;
@@ -18267,12 +17771,11 @@ interface RTCDtlsTransportEventMap {
18267
17771
  interface RTCDtlsTransport extends EventTarget {
18268
17772
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport/iceTransport) */
18269
17773
  readonly iceTransport: RTCIceTransport;
17774
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport/error_event) */
18270
17775
  onerror: ((this: RTCDtlsTransport, ev: Event) => any) | null;
18271
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport/statechange_event) */
18272
17776
  onstatechange: ((this: RTCDtlsTransport, ev: Event) => any) | null;
18273
17777
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport/state) */
18274
17778
  readonly state: RTCDtlsTransportState;
18275
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCDtlsTransport/getRemoteCertificates) */
18276
17779
  getRemoteCertificates(): ArrayBuffer[];
18277
17780
  addEventListener<K extends keyof RTCDtlsTransportEventMap>(type: K, listener: (this: RTCDtlsTransport, ev: RTCDtlsTransportEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
18278
17781
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -18551,12 +18054,9 @@ declare var RTCPeerConnection: {
18551
18054
  interface RTCPeerConnectionIceErrorEvent extends Event {
18552
18055
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnectionIceErrorEvent/address) */
18553
18056
  readonly address: string | null;
18554
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnectionIceErrorEvent/errorCode) */
18555
18057
  readonly errorCode: number;
18556
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnectionIceErrorEvent/errorText) */
18557
18058
  readonly errorText: string;
18558
18059
  readonly port: number | null;
18559
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnectionIceErrorEvent/url) */
18560
18060
  readonly url: string;
18561
18061
  }
18562
18062
 
@@ -18586,6 +18086,7 @@ declare var RTCPeerConnectionIceEvent: {
18586
18086
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver)
18587
18087
  */
18588
18088
  interface RTCRtpReceiver {
18089
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/jitterBufferTarget) */
18589
18090
  jitterBufferTarget: DOMHighResTimeStamp | null;
18590
18091
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCRtpReceiver/track) */
18591
18092
  readonly track: MediaStreamTrack;
@@ -18685,6 +18186,7 @@ interface RTCSctpTransport extends EventTarget {
18685
18186
  readonly maxChannels: number | null;
18686
18187
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/maxMessageSize) */
18687
18188
  readonly maxMessageSize: number;
18189
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/statechange_event) */
18688
18190
  onstatechange: ((this: RTCSctpTransport, ev: Event) => any) | null;
18689
18191
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCSctpTransport/state) */
18690
18192
  readonly state: RTCSctpTransportState;
@@ -18898,7 +18400,7 @@ interface ReadableStreamBYOBReader extends ReadableStreamGenericReader {
18898
18400
 
18899
18401
  declare var ReadableStreamBYOBReader: {
18900
18402
  prototype: ReadableStreamBYOBReader;
18901
- new(stream: ReadableStream): ReadableStreamBYOBReader;
18403
+ new(stream: ReadableStream<Uint8Array>): ReadableStreamBYOBReader;
18902
18404
  };
18903
18405
 
18904
18406
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest) */
@@ -19004,6 +18506,7 @@ declare var Report: {
19004
18506
 
19005
18507
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportBody) */
19006
18508
  interface ReportBody {
18509
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReportBody/toJSON) */
19007
18510
  toJSON(): any;
19008
18511
  }
19009
18512
 
@@ -19063,11 +18566,7 @@ interface Request extends Body {
19063
18566
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/integrity)
19064
18567
  */
19065
18568
  readonly integrity: string;
19066
- /**
19067
- * Returns a boolean indicating whether or not request can outlive the global in which it was created.
19068
- *
19069
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/keepalive)
19070
- */
18569
+ /** Returns a boolean indicating whether or not request can outlive the global in which it was created. */
19071
18570
  readonly keepalive: boolean;
19072
18571
  /**
19073
18572
  * Returns request's HTTP method, which is "GET" by default.
@@ -19143,6 +18642,7 @@ interface ResizeObserverEntry {
19143
18642
  readonly contentBoxSize: ReadonlyArray<ResizeObserverSize>;
19144
18643
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverEntry/contentRect) */
19145
18644
  readonly contentRect: DOMRectReadOnly;
18645
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverEntry/devicePixelContentBoxSize) */
19146
18646
  readonly devicePixelContentBoxSize: ReadonlyArray<ResizeObserverSize>;
19147
18647
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ResizeObserverEntry/target) */
19148
18648
  readonly target: Element;
@@ -19326,7 +18826,9 @@ declare var SVGAnimatedBoolean: {
19326
18826
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedEnumeration)
19327
18827
  */
19328
18828
  interface SVGAnimatedEnumeration {
18829
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedEnumeration/animVal) */
19329
18830
  readonly animVal: number;
18831
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedEnumeration/baseVal) */
19330
18832
  baseVal: number;
19331
18833
  }
19332
18834
 
@@ -19356,7 +18858,9 @@ declare var SVGAnimatedInteger: {
19356
18858
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLength)
19357
18859
  */
19358
18860
  interface SVGAnimatedLength {
18861
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLength/animVal) */
19359
18862
  readonly animVal: SVGLength;
18863
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLength/baseVal) */
19360
18864
  readonly baseVal: SVGLength;
19361
18865
  }
19362
18866
 
@@ -19718,11 +19222,8 @@ declare var SVGFEBlendElement: {
19718
19222
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement)
19719
19223
  */
19720
19224
  interface SVGFEColorMatrixElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
19721
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement/in1) */
19722
19225
  readonly in1: SVGAnimatedString;
19723
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement/type) */
19724
19226
  readonly type: SVGAnimatedEnumeration;
19725
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement/values) */
19726
19227
  readonly values: SVGAnimatedNumberList;
19727
19228
  readonly SVG_FECOLORMATRIX_TYPE_UNKNOWN: 0;
19728
19229
  readonly SVG_FECOLORMATRIX_TYPE_MATRIX: 1;
@@ -20412,7 +19913,6 @@ declare var SVGGraphicsElement: {
20412
19913
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement)
20413
19914
  */
20414
19915
  interface SVGImageElement extends SVGGraphicsElement, SVGURIReference {
20415
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/crossorigin) */
20416
19916
  crossOrigin: string | null;
20417
19917
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/height) */
20418
19918
  readonly height: SVGAnimatedLength;
@@ -21361,6 +20861,7 @@ interface ScreenOrientationEventMap {
21361
20861
  interface ScreenOrientation extends EventTarget {
21362
20862
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/angle) */
21363
20863
  readonly angle: number;
20864
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/change_event) */
21364
20865
  onchange: ((this: ScreenOrientation, ev: Event) => any) | null;
21365
20866
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/type) */
21366
20867
  readonly type: OrientationType;
@@ -21459,6 +20960,7 @@ interface Selection {
21459
20960
  readonly anchorNode: Node | null;
21460
20961
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/anchorOffset) */
21461
20962
  readonly anchorOffset: number;
20963
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/direction) */
21462
20964
  readonly direction: string;
21463
20965
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/focusNode) */
21464
20966
  readonly focusNode: Node | null;
@@ -21644,10 +21146,13 @@ interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot {
21644
21146
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/mode) */
21645
21147
  readonly mode: ShadowRootMode;
21646
21148
  onslotchange: ((this: ShadowRoot, ev: Event) => any) | null;
21149
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/serializable) */
21647
21150
  readonly serializable: boolean;
21648
21151
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/slotAssignment) */
21649
21152
  readonly slotAssignment: SlotAssignmentMode;
21153
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/getHTML) */
21650
21154
  getHTML(options?: GetHTMLOptions): string;
21155
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/setHTMLUnsafe) */
21651
21156
  setHTMLUnsafe(html: string): void;
21652
21157
  /** Throws a "NotSupportedError" DOMException if context object is a shadow root. */
21653
21158
  addEventListener<K extends keyof ShadowRootEventMap>(type: K, listener: (this: ShadowRoot, ev: ShadowRootEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -21707,15 +21212,10 @@ interface SourceBuffer extends EventTarget {
21707
21212
  readonly buffered: TimeRanges;
21708
21213
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/mode) */
21709
21214
  mode: AppendMode;
21710
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/abort_event) */
21711
21215
  onabort: ((this: SourceBuffer, ev: Event) => any) | null;
21712
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/error_event) */
21713
21216
  onerror: ((this: SourceBuffer, ev: Event) => any) | null;
21714
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/update_event) */
21715
21217
  onupdate: ((this: SourceBuffer, ev: Event) => any) | null;
21716
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/updateend_event) */
21717
21218
  onupdateend: ((this: SourceBuffer, ev: Event) => any) | null;
21718
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/updatestart_event) */
21719
21219
  onupdatestart: ((this: SourceBuffer, ev: Event) => any) | null;
21720
21220
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBuffer/timestampOffset) */
21721
21221
  timestampOffset: number;
@@ -21753,9 +21253,7 @@ interface SourceBufferListEventMap {
21753
21253
  interface SourceBufferList extends EventTarget {
21754
21254
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBufferList/length) */
21755
21255
  readonly length: number;
21756
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBufferList/addsourcebuffer_event) */
21757
21256
  onaddsourcebuffer: ((this: SourceBufferList, ev: Event) => any) | null;
21758
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SourceBufferList/removesourcebuffer_event) */
21759
21257
  onremovesourcebuffer: ((this: SourceBufferList, ev: Event) => any) | null;
21760
21258
  addEventListener<K extends keyof SourceBufferListEventMap>(type: K, listener: (this: SourceBufferList, ev: SourceBufferListEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
21761
21259
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -22224,7 +21722,7 @@ interface SubtleCrypto {
22224
21722
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/decrypt) */
22225
21723
  decrypt(algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesGcmParams, key: CryptoKey, data: BufferSource): Promise<ArrayBuffer>;
22226
21724
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/deriveBits) */
22227
- deriveBits(algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, length: number): Promise<ArrayBuffer>;
21725
+ deriveBits(algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, length?: number | null): Promise<ArrayBuffer>;
22228
21726
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/deriveKey) */
22229
21727
  deriveKey(algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | HkdfParams | Pbkdf2Params, baseKey: CryptoKey, derivedKeyType: AlgorithmIdentifier | AesDerivedKeyParams | HmacImportParams | HkdfParams | Pbkdf2Params, extractable: boolean, keyUsages: KeyUsage[]): Promise<CryptoKey>;
22230
21728
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/digest) */
@@ -22389,11 +21887,27 @@ declare var TextEncoderStream: {
22389
21887
  new(): TextEncoderStream;
22390
21888
  };
22391
21889
 
21890
+ /**
21891
+ * @deprecated
21892
+ *
21893
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEvent)
21894
+ */
22392
21895
  interface TextEvent extends UIEvent {
21896
+ /**
21897
+ * @deprecated
21898
+ *
21899
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEvent/data)
21900
+ */
22393
21901
  readonly data: string;
21902
+ /**
21903
+ * @deprecated
21904
+ *
21905
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEvent/initTextEvent)
21906
+ */
22394
21907
  initTextEvent(type: string, bubbles?: boolean, cancelable?: boolean, view?: Window | null, data?: string): void;
22395
21908
  }
22396
21909
 
21910
+ /** @deprecated */
22397
21911
  declare var TextEvent: {
22398
21912
  prototype: TextEvent;
22399
21913
  new(): TextEvent;
@@ -22675,7 +22189,7 @@ interface TextTrackList extends EventTarget {
22675
22189
  onaddtrack: ((this: TextTrackList, ev: TrackEvent) => any) | null;
22676
22190
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/change_event) */
22677
22191
  onchange: ((this: TextTrackList, ev: Event) => any) | null;
22678
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/removetrack_event) */
22192
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/removeTrack_event) */
22679
22193
  onremovetrack: ((this: TextTrackList, ev: TrackEvent) => any) | null;
22680
22194
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextTrackList/getTrackById) */
22681
22195
  getTrackById(id: string): TextTrack | null;
@@ -22992,11 +22506,11 @@ declare var URL: {
22992
22506
  prototype: URL;
22993
22507
  new(url: string | URL, base?: string | URL): URL;
22994
22508
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/canParse_static) */
22995
- canParse(url: string | URL, base?: string): boolean;
22509
+ canParse(url: string | URL, base?: string | URL): boolean;
22996
22510
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/createObjectURL_static) */
22997
22511
  createObjectURL(obj: Blob | MediaSource): string;
22998
22512
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/parse_static) */
22999
- parse(url: string | URL, base?: string): URL | null;
22513
+ parse(url: string | URL, base?: string | URL): URL | null;
23000
22514
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/revokeObjectURL_static) */
23001
22515
  revokeObjectURL(url: string): void;
23002
22516
  };
@@ -23106,21 +22620,13 @@ declare var VTTCue: {
23106
22620
 
23107
22621
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion) */
23108
22622
  interface VTTRegion {
23109
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion/id) */
23110
22623
  id: string;
23111
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion/lines) */
23112
22624
  lines: number;
23113
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion/regionAnchorX) */
23114
22625
  regionAnchorX: number;
23115
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion/regionAnchorY) */
23116
22626
  regionAnchorY: number;
23117
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion/scroll) */
23118
22627
  scroll: ScrollSetting;
23119
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion/viewportAnchorX) */
23120
22628
  viewportAnchorX: number;
23121
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion/viewportAnchorY) */
23122
22629
  viewportAnchorY: number;
23123
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VTTRegion/width) */
23124
22630
  width: number;
23125
22631
  }
23126
22632
 
@@ -23195,6 +22701,7 @@ interface VideoDecoderEventMap {
23195
22701
  interface VideoDecoder extends EventTarget {
23196
22702
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/decodeQueueSize) */
23197
22703
  readonly decodeQueueSize: number;
22704
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/dequeue_event) */
23198
22705
  ondequeue: ((this: VideoDecoder, ev: Event) => any) | null;
23199
22706
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/state) */
23200
22707
  readonly state: CodecState;
@@ -23217,6 +22724,7 @@ interface VideoDecoder extends EventTarget {
23217
22724
  declare var VideoDecoder: {
23218
22725
  prototype: VideoDecoder;
23219
22726
  new(init: VideoDecoderInit): VideoDecoder;
22727
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoDecoder/isConfigSupported_static) */
23220
22728
  isConfigSupported(config: VideoDecoderConfig): Promise<VideoDecoderSupport>;
23221
22729
  };
23222
22730
 
@@ -23232,6 +22740,7 @@ interface VideoEncoderEventMap {
23232
22740
  interface VideoEncoder extends EventTarget {
23233
22741
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/encodeQueueSize) */
23234
22742
  readonly encodeQueueSize: number;
22743
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/dequeue_event) */
23235
22744
  ondequeue: ((this: VideoEncoder, ev: Event) => any) | null;
23236
22745
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/state) */
23237
22746
  readonly state: CodecState;
@@ -23241,6 +22750,7 @@ interface VideoEncoder extends EventTarget {
23241
22750
  configure(config: VideoEncoderConfig): void;
23242
22751
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/encode) */
23243
22752
  encode(frame: VideoFrame, options?: VideoEncoderEncodeOptions): void;
22753
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/flush) */
23244
22754
  flush(): Promise<void>;
23245
22755
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/reset) */
23246
22756
  reset(): void;
@@ -23253,6 +22763,7 @@ interface VideoEncoder extends EventTarget {
23253
22763
  declare var VideoEncoder: {
23254
22764
  prototype: VideoEncoder;
23255
22765
  new(init: VideoEncoderInit): VideoEncoder;
22766
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoEncoder/isConfigSupported_static) */
23256
22767
  isConfigSupported(config: VideoEncoderConfig): Promise<VideoEncoderSupport>;
23257
22768
  };
23258
22769
 
@@ -23284,6 +22795,7 @@ interface VideoFrame {
23284
22795
  clone(): VideoFrame;
23285
22796
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/close) */
23286
22797
  close(): void;
22798
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/VideoFrame/copyTo) */
23287
22799
  copyTo(destination: AllowSharedBufferSource, options?: VideoFrameCopyToOptions): Promise<PlaneLayout[]>;
23288
22800
  }
23289
22801
 
@@ -24200,7 +23712,7 @@ interface WebGL2RenderingContextBase {
24200
23712
  clearBufferuiv(buffer: GLenum, drawbuffer: GLint, values: Uint32List, srcOffset?: number): void;
24201
23713
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clientWaitSync) */
24202
23714
  clientWaitSync(sync: WebGLSync, flags: GLbitfield, timeout: GLuint64): GLenum;
24203
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/compressedTexImage3D) */
23715
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/compressedTexImage2D) */
24204
23716
  compressedTexImage3D(target: GLenum, level: GLint, internalformat: GLenum, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, imageSize: GLsizei, offset: GLintptr): void;
24205
23717
  compressedTexImage3D(target: GLenum, level: GLint, internalformat: GLenum, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, srcData: ArrayBufferView, srcOffset?: number, srcLengthOverride?: GLuint): void;
24206
23718
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/compressedTexSubImage3D) */
@@ -25793,7 +25305,7 @@ declare var WebGLVertexArrayObject: {
25793
25305
  new(): WebGLVertexArrayObject;
25794
25306
  };
25795
25307
 
25796
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLVertexArrayObjectOES) */
25308
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLVertexArrayObject) */
25797
25309
  interface WebGLVertexArrayObjectOES {
25798
25310
  }
25799
25311
 
@@ -26374,24 +25886,24 @@ interface WindowOrWorkerGlobalScope {
26374
25886
  /**
26375
25887
  * Available only in secure contexts.
26376
25888
  *
26377
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/caches)
25889
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/caches)
26378
25890
  */
26379
25891
  readonly caches: CacheStorage;
26380
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/crossOriginIsolated) */
25892
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/crossOriginIsolated) */
26381
25893
  readonly crossOriginIsolated: boolean;
26382
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/crypto_property) */
25894
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/crypto) */
26383
25895
  readonly crypto: Crypto;
26384
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/indexedDB) */
25896
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/indexedDB) */
26385
25897
  readonly indexedDB: IDBFactory;
26386
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/isSecureContext) */
25898
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/isSecureContext) */
26387
25899
  readonly isSecureContext: boolean;
26388
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/origin) */
25900
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/origin) */
26389
25901
  readonly origin: string;
26390
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/performance_property) */
25902
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/performance) */
26391
25903
  readonly performance: Performance;
26392
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/atob) */
25904
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/atob) */
26393
25905
  atob(data: string): string;
26394
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/btoa) */
25906
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/btoa) */
26395
25907
  btoa(data: string): string;
26396
25908
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/clearInterval) */
26397
25909
  clearInterval(id: number | undefined): void;
@@ -26400,7 +25912,7 @@ interface WindowOrWorkerGlobalScope {
26400
25912
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/createImageBitmap) */
26401
25913
  createImageBitmap(image: ImageBitmapSource, options?: ImageBitmapOptions): Promise<ImageBitmap>;
26402
25914
  createImageBitmap(image: ImageBitmapSource, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise<ImageBitmap>;
26403
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/fetch) */
25915
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch) */
26404
25916
  fetch(input: RequestInfo | URL, init?: RequestInit): Promise<Response>;
26405
25917
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/queueMicrotask) */
26406
25918
  queueMicrotask(callback: VoidFunction): void;
@@ -26789,7 +26301,11 @@ declare var XPathEvaluator: {
26789
26301
  interface XPathEvaluatorBase {
26790
26302
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createExpression) */
26791
26303
  createExpression(expression: string, resolver?: XPathNSResolver | null): XPathExpression;
26792
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createNSResolver) */
26304
+ /**
26305
+ * @deprecated
26306
+ *
26307
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createNSResolver)
26308
+ */
26793
26309
  createNSResolver(nodeResolver: Node): Node;
26794
26310
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/evaluate) */
26795
26311
  evaluate(expression: string, contextNode: Node, resolver?: XPathNSResolver | null, type?: number, result?: XPathResult | null): XPathResult;
@@ -26898,7 +26414,7 @@ interface Console {
26898
26414
  clear(): void;
26899
26415
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static) */
26900
26416
  count(label?: string): void;
26901
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countReset_static) */
26417
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countreset_static) */
26902
26418
  countReset(label?: string): void;
26903
26419
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static) */
26904
26420
  debug(...data: any[]): void;
@@ -26910,9 +26426,9 @@ interface Console {
26910
26426
  error(...data: any[]): void;
26911
26427
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static) */
26912
26428
  group(...data: any[]): void;
26913
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupCollapsed_static) */
26429
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupcollapsed_static) */
26914
26430
  groupCollapsed(...data: any[]): void;
26915
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupEnd_static) */
26431
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupend_static) */
26916
26432
  groupEnd(): void;
26917
26433
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static) */
26918
26434
  info(...data: any[]): void;
@@ -26922,9 +26438,9 @@ interface Console {
26922
26438
  table(tabularData?: any, properties?: string[]): void;
26923
26439
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/time_static) */
26924
26440
  time(label?: string): void;
26925
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeEnd_static) */
26441
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeend_static) */
26926
26442
  timeEnd(label?: string): void;
26927
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static) */
26443
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timelog_static) */
26928
26444
  timeLog(label?: string, ...data: any[]): void;
26929
26445
  timeStamp(label?: string): void;
26930
26446
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/trace_static) */
@@ -27076,9 +26592,7 @@ declare namespace WebAssembly {
27076
26592
 
27077
26593
  /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Global) */
27078
26594
  interface Global<T extends ValueType = ValueType> {
27079
- /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Global/value) */
27080
26595
  value: ValueTypeMap[T];
27081
- /** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Global/valueOf) */
27082
26596
  valueOf(): ValueTypeMap[T];
27083
26597
  }
27084
26598
 
@@ -27957,7 +27471,7 @@ declare var onbeforetoggle: ((this: Window, ev: Event) => any) | null;
27957
27471
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/blur_event)
27958
27472
  */
27959
27473
  declare var onblur: ((this: Window, ev: FocusEvent) => any) | null;
27960
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/cancel_event) */
27474
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/cancel_event) */
27961
27475
  declare var oncancel: ((this: Window, ev: Event) => any) | null;
27962
27476
  /**
27963
27477
  * Occurs when playback is possible, but would require further buffering.
@@ -28145,7 +27659,7 @@ declare var onloadedmetadata: ((this: Window, ev: Event) => any) | null;
28145
27659
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/loadstart_event)
28146
27660
  */
28147
27661
  declare var onloadstart: ((this: Window, ev: Event) => any) | null;
28148
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/lostpointercapture_event) */
27662
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/lostpointercapture_event) */
28149
27663
  declare var onlostpointercapture: ((this: Window, ev: PointerEvent) => any) | null;
28150
27664
  /**
28151
27665
  * Fires when the user clicks the object with either mouse button.
@@ -28412,24 +27926,24 @@ declare var localStorage: Storage;
28412
27926
  /**
28413
27927
  * Available only in secure contexts.
28414
27928
  *
28415
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/caches)
27929
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/caches)
28416
27930
  */
28417
27931
  declare var caches: CacheStorage;
28418
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/crossOriginIsolated) */
27932
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/crossOriginIsolated) */
28419
27933
  declare var crossOriginIsolated: boolean;
28420
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/crypto_property) */
27934
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/crypto) */
28421
27935
  declare var crypto: Crypto;
28422
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/indexedDB) */
27936
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/indexedDB) */
28423
27937
  declare var indexedDB: IDBFactory;
28424
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/isSecureContext) */
27938
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/isSecureContext) */
28425
27939
  declare var isSecureContext: boolean;
28426
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/origin) */
27940
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/origin) */
28427
27941
  declare var origin: string;
28428
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/performance_property) */
27942
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/performance) */
28429
27943
  declare var performance: Performance;
28430
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/atob) */
27944
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/atob) */
28431
27945
  declare function atob(data: string): string;
28432
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/btoa) */
27946
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/btoa) */
28433
27947
  declare function btoa(data: string): string;
28434
27948
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/clearInterval) */
28435
27949
  declare function clearInterval(id: number | undefined): void;
@@ -28438,7 +27952,7 @@ declare function clearTimeout(id: number | undefined): void;
28438
27952
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/createImageBitmap) */
28439
27953
  declare function createImageBitmap(image: ImageBitmapSource, options?: ImageBitmapOptions): Promise<ImageBitmap>;
28440
27954
  declare function createImageBitmap(image: ImageBitmapSource, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise<ImageBitmap>;
28441
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/fetch) */
27955
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch) */
28442
27956
  declare function fetch(input: RequestInfo | URL, init?: RequestInit): Promise<Response>;
28443
27957
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/queueMicrotask) */
28444
27958
  declare function queueMicrotask(callback: VoidFunction): void;
@@ -28631,7 +28145,7 @@ type OscillatorType = "custom" | "sawtooth" | "sine" | "square" | "triangle";
28631
28145
  type OverSampleType = "2x" | "4x" | "none";
28632
28146
  type PanningModelType = "HRTF" | "equalpower";
28633
28147
  type PaymentComplete = "fail" | "success" | "unknown";
28634
- type PermissionName = "geolocation" | "notifications" | "persistent-storage" | "push" | "screen-wake-lock" | "xr-spatial-tracking";
28148
+ type PermissionName = "geolocation" | "midi" | "notifications" | "persistent-storage" | "push" | "screen-wake-lock" | "storage-access";
28635
28149
  type PermissionState = "denied" | "granted" | "prompt";
28636
28150
  type PlaybackDirection = "alternate" | "alternate-reverse" | "normal" | "reverse";
28637
28151
  type PositionAlignSetting = "auto" | "center" | "line-left" | "line-right";