typescript 5.8.0-dev.20250122 → 5.8.0-dev.20250124

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/lib/lib.dom.d.ts CHANGED
@@ -787,6 +787,26 @@ interface ImageDataSettings {
787
787
  colorSpace?: PredefinedColorSpace;
788
788
  }
789
789
 
790
+ interface ImageDecodeOptions {
791
+ completeFramesOnly?: boolean;
792
+ frameIndex?: number;
793
+ }
794
+
795
+ interface ImageDecodeResult {
796
+ complete: boolean;
797
+ image: VideoFrame;
798
+ }
799
+
800
+ interface ImageDecoderInit {
801
+ colorSpaceConversion?: ColorSpaceConversion;
802
+ data: ImageBufferSource;
803
+ desiredHeight?: number;
804
+ desiredWidth?: number;
805
+ preferAnimation?: boolean;
806
+ transfer?: ArrayBuffer[];
807
+ type: string;
808
+ }
809
+
790
810
  interface ImageEncodeOptions {
791
811
  quality?: number;
792
812
  type?: string;
@@ -1178,6 +1198,15 @@ interface OscillatorOptions extends AudioNodeOptions {
1178
1198
  type?: OscillatorType;
1179
1199
  }
1180
1200
 
1201
+ interface PageRevealEventInit extends EventInit {
1202
+ viewTransition?: ViewTransition | null;
1203
+ }
1204
+
1205
+ interface PageSwapEventInit extends EventInit {
1206
+ activation?: NavigationActivation | null;
1207
+ viewTransition?: ViewTransition | null;
1208
+ }
1209
+
1181
1210
  interface PageTransitionEventInit extends EventInit {
1182
1211
  persisted?: boolean;
1183
1212
  }
@@ -1563,13 +1592,18 @@ interface RTCIceCandidateInit {
1563
1592
  interface RTCIceCandidatePairStats extends RTCStats {
1564
1593
  availableIncomingBitrate?: number;
1565
1594
  availableOutgoingBitrate?: number;
1595
+ bytesDiscardedOnSend?: number;
1566
1596
  bytesReceived?: number;
1567
1597
  bytesSent?: number;
1598
+ consentRequestsSent?: number;
1568
1599
  currentRoundTripTime?: number;
1569
1600
  lastPacketReceivedTimestamp?: DOMHighResTimeStamp;
1570
1601
  lastPacketSentTimestamp?: DOMHighResTimeStamp;
1571
1602
  localCandidateId: string;
1572
1603
  nominated?: boolean;
1604
+ packetsDiscardedOnSend?: number;
1605
+ packetsReceived?: number;
1606
+ packetsSent?: number;
1573
1607
  remoteCandidateId: string;
1574
1608
  requestsReceived?: number;
1575
1609
  requestsSent?: number;
@@ -1593,32 +1627,47 @@ interface RTCInboundRtpStreamStats extends RTCReceivedRtpStreamStats {
1593
1627
  concealmentEvents?: number;
1594
1628
  decoderImplementation?: string;
1595
1629
  estimatedPlayoutTimestamp?: DOMHighResTimeStamp;
1630
+ fecBytesReceived?: number;
1596
1631
  fecPacketsDiscarded?: number;
1597
1632
  fecPacketsReceived?: number;
1633
+ fecSsrc?: number;
1598
1634
  firCount?: number;
1599
1635
  frameHeight?: number;
1600
1636
  frameWidth?: number;
1637
+ framesAssembledFromMultiplePackets?: number;
1601
1638
  framesDecoded?: number;
1602
1639
  framesDropped?: number;
1603
1640
  framesPerSecond?: number;
1604
1641
  framesReceived?: number;
1642
+ framesRendered?: number;
1643
+ freezeCount?: number;
1605
1644
  headerBytesReceived?: number;
1606
1645
  insertedSamplesForDeceleration?: number;
1607
1646
  jitterBufferDelay?: number;
1608
1647
  jitterBufferEmittedCount?: number;
1648
+ jitterBufferMinimumDelay?: number;
1649
+ jitterBufferTargetDelay?: number;
1609
1650
  keyFramesDecoded?: number;
1610
1651
  lastPacketReceivedTimestamp?: DOMHighResTimeStamp;
1611
1652
  mid?: string;
1612
1653
  nackCount?: number;
1613
1654
  packetsDiscarded?: number;
1655
+ pauseCount?: number;
1656
+ playoutId?: string;
1614
1657
  pliCount?: number;
1615
1658
  qpSum?: number;
1616
1659
  remoteId?: string;
1617
1660
  removedSamplesForAcceleration?: number;
1661
+ retransmittedBytesReceived?: number;
1662
+ retransmittedPacketsReceived?: number;
1663
+ rtxSsrc?: number;
1618
1664
  silentConcealedSamples?: number;
1665
+ totalAssemblyTime?: number;
1619
1666
  totalAudioEnergy?: number;
1620
1667
  totalDecodeTime?: number;
1668
+ totalFreezesDuration?: number;
1621
1669
  totalInterFrameDelay?: number;
1670
+ totalPausesDuration?: number;
1622
1671
  totalProcessingDelay?: number;
1623
1672
  totalSamplesDuration?: number;
1624
1673
  totalSamplesReceived?: number;
@@ -1641,6 +1690,7 @@ interface RTCOfferOptions extends RTCOfferAnswerOptions {
1641
1690
  }
1642
1691
 
1643
1692
  interface RTCOutboundRtpStreamStats extends RTCSentRtpStreamStats {
1693
+ active?: boolean;
1644
1694
  firCount?: number;
1645
1695
  frameHeight?: number;
1646
1696
  frameWidth?: number;
@@ -1651,15 +1701,19 @@ interface RTCOutboundRtpStreamStats extends RTCSentRtpStreamStats {
1651
1701
  hugeFramesSent?: number;
1652
1702
  keyFramesEncoded?: number;
1653
1703
  mediaSourceId?: string;
1704
+ mid?: string;
1654
1705
  nackCount?: number;
1655
1706
  pliCount?: number;
1656
1707
  qpSum?: number;
1708
+ qualityLimitationDurations?: Record<string, number>;
1709
+ qualityLimitationReason?: RTCQualityLimitationReason;
1657
1710
  qualityLimitationResolutionChanges?: number;
1658
1711
  remoteId?: string;
1659
1712
  retransmittedBytesSent?: number;
1660
1713
  retransmittedPacketsSent?: number;
1661
1714
  rid?: string;
1662
1715
  rtxSsrc?: number;
1716
+ scalabilityMode?: string;
1663
1717
  targetBitrate?: number;
1664
1718
  totalEncodeTime?: number;
1665
1719
  totalEncodedBytesTarget?: number;
@@ -1797,9 +1851,16 @@ interface RTCTransportStats extends RTCStats {
1797
1851
  bytesReceived?: number;
1798
1852
  bytesSent?: number;
1799
1853
  dtlsCipher?: string;
1854
+ dtlsRole?: RTCDtlsRole;
1800
1855
  dtlsState: RTCDtlsTransportState;
1856
+ iceLocalUsernameFragment?: string;
1857
+ iceRole?: RTCIceRole;
1858
+ iceState?: RTCIceTransportState;
1801
1859
  localCertificateId?: string;
1860
+ packetsReceived?: number;
1861
+ packetsSent?: number;
1802
1862
  remoteCertificateId?: string;
1863
+ selectedCandidatePairChanges?: number;
1803
1864
  selectedCandidatePairId?: string;
1804
1865
  srtpCipher?: string;
1805
1866
  tlsVersion?: string;
@@ -2458,6 +2519,8 @@ interface ARIAMixin {
2458
2519
  ariaPressed: string | null;
2459
2520
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaReadOnly) */
2460
2521
  ariaReadOnly: string | null;
2522
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRelevant) */
2523
+ ariaRelevant: string | null;
2461
2524
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRequired) */
2462
2525
  ariaRequired: string | null;
2463
2526
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaRoleDescription) */
@@ -3632,7 +3695,8 @@ declare var CSSCounterStyleRule: {
3632
3695
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFaceRule) */
3633
3696
  interface CSSFontFaceRule extends CSSRule {
3634
3697
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFaceRule/style) */
3635
- readonly style: CSSStyleDeclaration;
3698
+ get style(): CSSStyleDeclaration;
3699
+ set style(cssText: string);
3636
3700
  }
3637
3701
 
3638
3702
  declare var CSSFontFaceRule: {
@@ -3703,7 +3767,8 @@ interface CSSImportRule extends CSSRule {
3703
3767
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/layerName) */
3704
3768
  readonly layerName: string | null;
3705
3769
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/media) */
3706
- readonly media: MediaList;
3770
+ get media(): MediaList;
3771
+ set media(mediaText: string);
3707
3772
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/styleSheet) */
3708
3773
  readonly styleSheet: CSSStyleSheet | null;
3709
3774
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSImportRule/supportsText) */
@@ -3724,7 +3789,8 @@ interface CSSKeyframeRule extends CSSRule {
3724
3789
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeyframeRule/keyText) */
3725
3790
  keyText: string;
3726
3791
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSKeyframeRule/style) */
3727
- readonly style: CSSStyleDeclaration;
3792
+ get style(): CSSStyleDeclaration;
3793
+ set style(cssText: string);
3728
3794
  }
3729
3795
 
3730
3796
  declare var CSSKeyframeRule: {
@@ -3897,7 +3963,8 @@ declare var CSSMatrixComponent: {
3897
3963
  */
3898
3964
  interface CSSMediaRule extends CSSConditionRule {
3899
3965
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSMediaRule/media) */
3900
- readonly media: MediaList;
3966
+ get media(): MediaList;
3967
+ set media(mediaText: string);
3901
3968
  }
3902
3969
 
3903
3970
  declare var CSSMediaRule: {
@@ -3922,6 +3989,18 @@ declare var CSSNamespaceRule: {
3922
3989
  new(): CSSNamespaceRule;
3923
3990
  };
3924
3991
 
3992
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNestedDeclarations) */
3993
+ interface CSSNestedDeclarations extends CSSRule {
3994
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNestedDeclarations/style) */
3995
+ get style(): CSSStyleDeclaration;
3996
+ set style(cssText: string);
3997
+ }
3998
+
3999
+ declare var CSSNestedDeclarations: {
4000
+ prototype: CSSNestedDeclarations;
4001
+ new(): CSSNestedDeclarations;
4002
+ };
4003
+
3925
4004
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericArray) */
3926
4005
  interface CSSNumericArray {
3927
4006
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSNumericArray/length) */
@@ -3975,7 +4054,8 @@ interface CSSPageRule extends CSSGroupingRule {
3975
4054
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageRule/selectorText) */
3976
4055
  selectorText: string;
3977
4056
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSPageRule/style) */
3978
- readonly style: CSSStyleDeclaration;
4057
+ get style(): CSSStyleDeclaration;
4058
+ set style(cssText: string);
3979
4059
  }
3980
4060
 
3981
4061
  declare var CSSPageRule: {
@@ -4182,6 +4262,7 @@ interface CSSStyleDeclaration {
4182
4262
  alignItems: string;
4183
4263
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/align-self) */
4184
4264
  alignSelf: string;
4265
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/alignment-baseline) */
4185
4266
  alignmentBaseline: string;
4186
4267
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/all) */
4187
4268
  all: string;
@@ -4365,6 +4446,8 @@ interface CSSStyleDeclaration {
4365
4446
  borderWidth: string;
4366
4447
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/bottom) */
4367
4448
  bottom: string;
4449
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/box-decoration-break) */
4450
+ boxDecorationBreak: string;
4368
4451
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/box-shadow) */
4369
4452
  boxShadow: string;
4370
4453
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/box-sizing) */
@@ -4491,7 +4574,9 @@ interface CSSStyleDeclaration {
4491
4574
  flexWrap: string;
4492
4575
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/float) */
4493
4576
  float: string;
4577
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flood-color) */
4494
4578
  floodColor: string;
4579
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flood-opacity) */
4495
4580
  floodOpacity: string;
4496
4581
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font) */
4497
4582
  font: string;
@@ -4623,6 +4708,7 @@ interface CSSStyleDeclaration {
4623
4708
  readonly length: number;
4624
4709
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/letter-spacing) */
4625
4710
  letterSpacing: string;
4711
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/lighting-color) */
4626
4712
  lightingColor: string;
4627
4713
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/line-break) */
4628
4714
  lineBreak: string;
@@ -4930,6 +5016,9 @@ interface CSSStyleDeclaration {
4930
5016
  textAlignLast: string;
4931
5017
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-anchor) */
4932
5018
  textAnchor: string;
5019
+ textBox: string;
5020
+ textBoxEdge: string;
5021
+ textBoxTrim: string;
4933
5022
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-combine-upright) */
4934
5023
  textCombineUpright: string;
4935
5024
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-decoration) */
@@ -5008,6 +5097,7 @@ interface CSSStyleDeclaration {
5008
5097
  vectorEffect: string;
5009
5098
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/vertical-align) */
5010
5099
  verticalAlign: string;
5100
+ viewTransitionClass: string;
5011
5101
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/view-transition-name) */
5012
5102
  viewTransitionName: string;
5013
5103
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/visibility) */
@@ -5240,11 +5330,7 @@ interface CSSStyleDeclaration {
5240
5330
  * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/justify-content)
5241
5331
  */
5242
5332
  webkitJustifyContent: string;
5243
- /**
5244
- * @deprecated This is a legacy alias of `lineClamp`.
5245
- *
5246
- * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/-webkit-line-clamp)
5247
- */
5333
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/-webkit-line-clamp) */
5248
5334
  webkitLineClamp: string;
5249
5335
  /**
5250
5336
  * @deprecated This is a legacy alias of `mask`.
@@ -5430,7 +5516,11 @@ interface CSSStyleDeclaration {
5430
5516
  wordBreak: string;
5431
5517
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/word-spacing) */
5432
5518
  wordSpacing: string;
5433
- /** @deprecated */
5519
+ /**
5520
+ * @deprecated
5521
+ *
5522
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-wrap)
5523
+ */
5434
5524
  wordWrap: string;
5435
5525
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/writing-mode) */
5436
5526
  writingMode: string;
@@ -5469,7 +5559,8 @@ interface CSSStyleRule extends CSSGroupingRule {
5469
5559
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleRule/selectorText) */
5470
5560
  selectorText: string;
5471
5561
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleRule/style) */
5472
- readonly style: CSSStyleDeclaration;
5562
+ get style(): CSSStyleDeclaration;
5563
+ set style(cssText: string);
5473
5564
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleRule/styleMap) */
5474
5565
  readonly styleMap: StylePropertyMap;
5475
5566
  }
@@ -5649,6 +5740,16 @@ declare var CSSVariableReferenceValue: {
5649
5740
  new(variable: string, fallback?: CSSUnparsedValue | null): CSSVariableReferenceValue;
5650
5741
  };
5651
5742
 
5743
+ interface CSSViewTransitionRule extends CSSRule {
5744
+ readonly navigation: string;
5745
+ readonly types: ReadonlyArray<string>;
5746
+ }
5747
+
5748
+ declare var CSSViewTransitionRule: {
5749
+ prototype: CSSViewTransitionRule;
5750
+ new(): CSSViewTransitionRule;
5751
+ };
5752
+
5652
5753
  /**
5653
5754
  * Provides a storage mechanism for Request / Response object pairs that are cached, for example as part of the ServiceWorker life cycle. Note that the Cache interface is exposed to windowed scopes as well as workers. You don't have to use it in conjunction with service workers, even though it is defined in the service worker spec.
5654
5755
  * Available only in secure contexts.
@@ -6551,17 +6652,25 @@ interface DOMMatrix extends DOMMatrixReadOnly {
6551
6652
  m43: number;
6552
6653
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix#instance_properties) */
6553
6654
  m44: number;
6655
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/invertSelf) */
6554
6656
  invertSelf(): DOMMatrix;
6657
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/multiplySelf) */
6555
6658
  multiplySelf(other?: DOMMatrixInit): DOMMatrix;
6659
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/preMultiplySelf) */
6556
6660
  preMultiplySelf(other?: DOMMatrixInit): DOMMatrix;
6557
6661
  rotateAxisAngleSelf(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
6558
6662
  rotateFromVectorSelf(x?: number, y?: number): DOMMatrix;
6663
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/rotateSelf) */
6559
6664
  rotateSelf(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
6560
6665
  scale3dSelf(scale?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
6561
6666
  scaleSelf(scaleX?: number, scaleY?: number, scaleZ?: number, originX?: number, originY?: number, originZ?: number): DOMMatrix;
6667
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/setMatrixValue) */
6562
6668
  setMatrixValue(transformList: string): DOMMatrix;
6669
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewXSelf) */
6563
6670
  skewXSelf(sx?: number): DOMMatrix;
6671
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/skewYSelf) */
6564
6672
  skewYSelf(sy?: number): DOMMatrix;
6673
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrix/translateSelf) */
6565
6674
  translateSelf(tx?: number, ty?: number, tz?: number): DOMMatrix;
6566
6675
  }
6567
6676
 
@@ -6629,8 +6738,11 @@ interface DOMMatrixReadOnly {
6629
6738
  readonly m44: number;
6630
6739
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipX) */
6631
6740
  flipX(): DOMMatrix;
6741
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/flipY) */
6632
6742
  flipY(): DOMMatrix;
6743
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/inverse) */
6633
6744
  inverse(): DOMMatrix;
6745
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/multiply) */
6634
6746
  multiply(other?: DOMMatrixInit): DOMMatrix;
6635
6747
  rotate(rotX?: number, rotY?: number, rotZ?: number): DOMMatrix;
6636
6748
  rotateAxisAngle(x?: number, y?: number, z?: number, angle?: number): DOMMatrix;
@@ -6642,9 +6754,13 @@ interface DOMMatrixReadOnly {
6642
6754
  scaleNonUniform(scaleX?: number, scaleY?: number): DOMMatrix;
6643
6755
  skewX(sx?: number): DOMMatrix;
6644
6756
  skewY(sy?: number): DOMMatrix;
6757
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat32Array) */
6645
6758
  toFloat32Array(): Float32Array;
6759
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toFloat64Array) */
6646
6760
  toFloat64Array(): Float64Array;
6761
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/toJSON) */
6647
6762
  toJSON(): any;
6763
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/transformPoint) */
6648
6764
  transformPoint(point?: DOMPointInit): DOMPoint;
6649
6765
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMMatrixReadOnly/translate) */
6650
6766
  translate(tx?: number, ty?: number, tz?: number): DOMMatrix;
@@ -6716,6 +6832,7 @@ interface DOMPointReadOnly {
6716
6832
  readonly y: number;
6717
6833
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/z) */
6718
6834
  readonly z: number;
6835
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/matrixTransform) */
6719
6836
  matrixTransform(matrix?: DOMMatrixInit): DOMPoint;
6720
6837
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMPointReadOnly/toJSON) */
6721
6838
  toJSON(): any;
@@ -6730,11 +6847,17 @@ declare var DOMPointReadOnly: {
6730
6847
 
6731
6848
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad) */
6732
6849
  interface DOMQuad {
6850
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p1) */
6733
6851
  readonly p1: DOMPoint;
6852
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p2) */
6734
6853
  readonly p2: DOMPoint;
6854
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p3) */
6735
6855
  readonly p3: DOMPoint;
6856
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/p4) */
6736
6857
  readonly p4: DOMPoint;
6858
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/getBounds) */
6737
6859
  getBounds(): DOMRect;
6860
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMQuad/toJSON) */
6738
6861
  toJSON(): any;
6739
6862
  }
6740
6863
 
@@ -6747,9 +6870,13 @@ declare var DOMQuad: {
6747
6870
 
6748
6871
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect) */
6749
6872
  interface DOMRect extends DOMRectReadOnly {
6873
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect/height) */
6750
6874
  height: number;
6875
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect/width) */
6751
6876
  width: number;
6877
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect/x) */
6752
6878
  x: number;
6879
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRect/y) */
6753
6880
  y: number;
6754
6881
  }
6755
6882
 
@@ -6763,8 +6890,11 @@ declare var DOMRect: {
6763
6890
  type SVGRect = DOMRect;
6764
6891
  declare var SVGRect: typeof DOMRect;
6765
6892
 
6893
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectList) */
6766
6894
  interface DOMRectList {
6895
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectList/length) */
6767
6896
  readonly length: number;
6897
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectList/item) */
6768
6898
  item(index: number): DOMRect | null;
6769
6899
  [index: number]: DOMRect;
6770
6900
  }
@@ -6792,6 +6922,7 @@ interface DOMRectReadOnly {
6792
6922
  readonly x: number;
6793
6923
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/y) */
6794
6924
  readonly y: number;
6925
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMRectReadOnly/toJSON) */
6795
6926
  toJSON(): any;
6796
6927
  }
6797
6928
 
@@ -7427,7 +7558,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
7427
7558
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/location)
7428
7559
  */
7429
7560
  get location(): Location;
7430
- set location(href: string | Location);
7561
+ set location(href: string);
7431
7562
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/fullscreenchange_event) */
7432
7563
  onfullscreenchange: ((this: Document, ev: Event) => any) | null;
7433
7564
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/fullscreenerror_event) */
@@ -7585,7 +7716,11 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
7585
7716
  createElementNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", qualifiedName: string): MathMLElement;
7586
7717
  createElementNS(namespaceURI: string | null, qualifiedName: string, options?: ElementCreationOptions): Element;
7587
7718
  createElementNS(namespace: string | null, qualifiedName: string, options?: string | ElementCreationOptions): Element;
7588
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createEvent) */
7719
+ /**
7720
+ * @deprecated
7721
+ *
7722
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/createEvent)
7723
+ */
7589
7724
  createEvent(eventInterface: "AnimationEvent"): AnimationEvent;
7590
7725
  createEvent(eventInterface: "AnimationPlaybackEvent"): AnimationPlaybackEvent;
7591
7726
  createEvent(eventInterface: "AudioProcessingEvent"): AudioProcessingEvent;
@@ -7620,6 +7755,8 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
7620
7755
  createEvent(eventInterface: "MouseEvent"): MouseEvent;
7621
7756
  createEvent(eventInterface: "MouseEvents"): MouseEvent;
7622
7757
  createEvent(eventInterface: "OfflineAudioCompletionEvent"): OfflineAudioCompletionEvent;
7758
+ createEvent(eventInterface: "PageRevealEvent"): PageRevealEvent;
7759
+ createEvent(eventInterface: "PageSwapEvent"): PageSwapEvent;
7623
7760
  createEvent(eventInterface: "PageTransitionEvent"): PageTransitionEvent;
7624
7761
  createEvent(eventInterface: "PaymentMethodChangeEvent"): PaymentMethodChangeEvent;
7625
7762
  createEvent(eventInterface: "PaymentRequestUpdateEvent"): PaymentRequestUpdateEvent;
@@ -7772,7 +7909,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
7772
7909
  *
7773
7910
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/importNode)
7774
7911
  */
7775
- importNode<T extends Node>(node: T, deep?: boolean): T;
7912
+ importNode<T extends Node>(node: T, subtree?: boolean): T;
7776
7913
  /**
7777
7914
  * Opens a new window and loads a document specified by a given URL. Also, opens a new window that uses the url parameter and the name parameter to collect the output of the write method and the writeln method.
7778
7915
  * @param url Specifies a MIME type for the document.
@@ -7829,6 +7966,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
7829
7966
  /**
7830
7967
  * Writes one or more HTML expressions to a document in the specified window.
7831
7968
  * @param content Specifies the text and HTML tags to write.
7969
+ * @deprecated
7832
7970
  *
7833
7971
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/write)
7834
7972
  */
@@ -8079,7 +8217,8 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
8079
8217
  *
8080
8218
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/classList)
8081
8219
  */
8082
- readonly classList: DOMTokenList;
8220
+ get classList(): DOMTokenList;
8221
+ set classList(value: string);
8083
8222
  /**
8084
8223
  * Returns the value of element's class content attribute. Can be set to change it.
8085
8224
  *
@@ -8124,7 +8263,8 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
8124
8263
  outerHTML: string;
8125
8264
  readonly ownerDocument: Document;
8126
8265
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/part) */
8127
- readonly part: DOMTokenList;
8266
+ get part(): DOMTokenList;
8267
+ set part(value: string);
8128
8268
  /**
8129
8269
  * Returns the namespace prefix.
8130
8270
  *
@@ -8340,7 +8480,8 @@ interface ElementCSSInlineStyle {
8340
8480
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attributeStyleMap) */
8341
8481
  readonly attributeStyleMap: StylePropertyMap;
8342
8482
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/style) */
8343
- readonly style: CSSStyleDeclaration;
8483
+ get style(): CSSStyleDeclaration;
8484
+ set style(cssText: string);
8344
8485
  }
8345
8486
 
8346
8487
  interface ElementContentEditable {
@@ -8471,10 +8612,15 @@ declare var EncodedVideoChunk: {
8471
8612
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent)
8472
8613
  */
8473
8614
  interface ErrorEvent extends Event {
8615
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/colno) */
8474
8616
  readonly colno: number;
8617
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) */
8475
8618
  readonly error: any;
8619
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) */
8476
8620
  readonly filename: string;
8621
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/lineno) */
8477
8622
  readonly lineno: number;
8623
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) */
8478
8624
  readonly message: string;
8479
8625
  }
8480
8626
 
@@ -9148,6 +9294,16 @@ declare var FragmentDirective: {
9148
9294
  new(): FragmentDirective;
9149
9295
  };
9150
9296
 
9297
+ /**
9298
+ * Available only in secure contexts.
9299
+ *
9300
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUError)
9301
+ */
9302
+ interface GPUError {
9303
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/GPUError/message) */
9304
+ readonly message: string;
9305
+ }
9306
+
9151
9307
  /**
9152
9308
  * A change in volume. It is an AudioNode audio-processing module that causes a given gain to be applied to the input data before its propagation to the output. A GainNode always has exactly one input and one output, both with the same number of channels.
9153
9309
  *
@@ -9471,7 +9627,7 @@ interface GlobalEventHandlers {
9471
9627
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/blur_event)
9472
9628
  */
9473
9629
  onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
9474
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/cancel_event) */
9630
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/cancel_event) */
9475
9631
  oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
9476
9632
  /**
9477
9633
  * Occurs when playback is possible, but would require further buffering.
@@ -9498,7 +9654,7 @@ interface GlobalEventHandlers {
9498
9654
  onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
9499
9655
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/close_event) */
9500
9656
  onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
9501
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/webglcontextlost_event) */
9657
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/contextlost_event) */
9502
9658
  oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
9503
9659
  /**
9504
9660
  * Fires when the user clicks the right mouse button in the client area, opening the context menu.
@@ -9823,7 +9979,7 @@ interface GlobalEventHandlers {
9823
9979
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/timeupdate_event)
9824
9980
  */
9825
9981
  ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
9826
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDetailsElement/toggle_event) */
9982
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/toggle_event) */
9827
9983
  ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
9828
9984
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/touchcancel_event) */
9829
9985
  ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
@@ -9959,7 +10115,8 @@ interface HTMLAnchorElement extends HTMLElement, HTMLHyperlinkElementUtils {
9959
10115
  */
9960
10116
  rel: string;
9961
10117
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAnchorElement/relList) */
9962
- readonly relList: DOMTokenList;
10118
+ get relList(): DOMTokenList;
10119
+ set relList(value: string);
9963
10120
  /**
9964
10121
  * Sets or retrieves the relationship between the object and the destination of the link.
9965
10122
  * @deprecated
@@ -10001,10 +10158,19 @@ declare var HTMLAnchorElement: {
10001
10158
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement)
10002
10159
  */
10003
10160
  interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
10004
- /** Sets or retrieves a text alternative to the graphic. */
10161
+ /**
10162
+ * Sets or retrieves a text alternative to the graphic.
10163
+ *
10164
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/alt)
10165
+ */
10005
10166
  alt: string;
10006
- /** Sets or retrieves the coordinates of the object. */
10167
+ /**
10168
+ * Sets or retrieves the coordinates of the object.
10169
+ *
10170
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/coords)
10171
+ */
10007
10172
  coords: string;
10173
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/download) */
10008
10174
  download: string;
10009
10175
  /**
10010
10176
  * Sets or gets whether clicks in this region cause action.
@@ -10018,8 +10184,13 @@ interface HTMLAreaElement extends HTMLElement, HTMLHyperlinkElementUtils {
10018
10184
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/rel) */
10019
10185
  rel: string;
10020
10186
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/relList) */
10021
- readonly relList: DOMTokenList;
10022
- /** Sets or retrieves the shape of the object. */
10187
+ get relList(): DOMTokenList;
10188
+ set relList(value: string);
10189
+ /**
10190
+ * Sets or retrieves the shape of the object.
10191
+ *
10192
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLAreaElement/shape)
10193
+ */
10023
10194
  shape: string;
10024
10195
  /**
10025
10196
  * Sets or retrieves the window or frame at which to target content.
@@ -10152,15 +10323,35 @@ interface HTMLButtonElement extends HTMLElement, PopoverInvokerElement {
10152
10323
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/form)
10153
10324
  */
10154
10325
  readonly form: HTMLFormElement | null;
10155
- /** Overrides the action attribute (where the data on a form is sent) on the parent form element. */
10326
+ /**
10327
+ * Overrides the action attribute (where the data on a form is sent) on the parent form element.
10328
+ *
10329
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formAction)
10330
+ */
10156
10331
  formAction: string;
10157
- /** Used to override the encoding (formEnctype attribute) specified on the form element. */
10332
+ /**
10333
+ * Used to override the encoding (formEnctype attribute) specified on the form element.
10334
+ *
10335
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formEnctype)
10336
+ */
10158
10337
  formEnctype: string;
10159
- /** Overrides the submit method attribute previously specified on a form element. */
10338
+ /**
10339
+ * Overrides the submit method attribute previously specified on a form element.
10340
+ *
10341
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formMethod)
10342
+ */
10160
10343
  formMethod: string;
10161
- /** 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. */
10344
+ /**
10345
+ * 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.
10346
+ *
10347
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formNoValidate)
10348
+ */
10162
10349
  formNoValidate: boolean;
10163
- /** Overrides the target attribute on a form element. */
10350
+ /**
10351
+ * Overrides the target attribute on a form element.
10352
+ *
10353
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formTarget)
10354
+ */
10164
10355
  formTarget: string;
10165
10356
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/labels) */
10166
10357
  readonly labels: NodeListOf<HTMLLabelElement>;
@@ -10258,14 +10449,14 @@ interface HTMLCanvasElement extends HTMLElement {
10258
10449
  getContext(contextId: "webgl2", options?: WebGLContextAttributes): WebGL2RenderingContext | null;
10259
10450
  getContext(contextId: string, options?: any): RenderingContext | null;
10260
10451
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/toBlob) */
10261
- toBlob(callback: BlobCallback, type?: string, quality?: any): void;
10452
+ toBlob(callback: BlobCallback, type?: string, quality?: number): void;
10262
10453
  /**
10263
10454
  * Returns the content of the current canvas as an image that you can use as a source for another canvas or an HTML element.
10264
10455
  * @param type The standard MIME type for the image format to return. If you do not specify this parameter, the default value is a PNG format image.
10265
10456
  *
10266
10457
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/toDataURL)
10267
10458
  */
10268
- toDataURL(type?: string, quality?: any): string;
10459
+ toDataURL(type?: string, quality?: number): string;
10269
10460
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/transferControlToOffscreen) */
10270
10461
  transferControlToOffscreen(): OffscreenCanvas;
10271
10462
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLCanvasElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -10383,7 +10574,7 @@ declare var HTMLDataListElement: {
10383
10574
 
10384
10575
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDetailsElement) */
10385
10576
  interface HTMLDetailsElement extends HTMLElement {
10386
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDetailsElement/open) */
10577
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDetailsElement/name) */
10387
10578
  name: string;
10388
10579
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDetailsElement/open) */
10389
10580
  open: boolean;
@@ -10530,6 +10721,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
10530
10721
  title: string;
10531
10722
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/translate) */
10532
10723
  translate: boolean;
10724
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/writingSuggestions) */
10533
10725
  writingSuggestions: string;
10534
10726
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/attachInternals) */
10535
10727
  attachInternals(): ElementInternals;
@@ -10540,7 +10732,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
10540
10732
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/showPopover) */
10541
10733
  showPopover(): void;
10542
10734
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/togglePopover) */
10543
- togglePopover(force?: boolean): boolean;
10735
+ togglePopover(options?: boolean): boolean;
10544
10736
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
10545
10737
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
10546
10738
  removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
@@ -10577,6 +10769,7 @@ interface HTMLEmbedElement extends HTMLElement {
10577
10769
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/src)
10578
10770
  */
10579
10771
  src: string;
10772
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/type) */
10580
10773
  type: string;
10581
10774
  /**
10582
10775
  * Sets or retrieves the width of the object.
@@ -10584,6 +10777,7 @@ interface HTMLEmbedElement extends HTMLElement {
10584
10777
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/width)
10585
10778
  */
10586
10779
  width: string;
10780
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLEmbedElement/getSVGDocument) */
10587
10781
  getSVGDocument(): Document | null;
10588
10782
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLEmbedElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
10589
10783
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -10745,7 +10939,11 @@ interface HTMLFormElement extends HTMLElement {
10745
10939
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/action)
10746
10940
  */
10747
10941
  action: string;
10748
- /** Specifies whether autocomplete is applied to an editable text field. */
10942
+ /**
10943
+ * Specifies whether autocomplete is applied to an editable text field.
10944
+ *
10945
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/autocomplete)
10946
+ */
10749
10947
  autocomplete: AutoFillBase;
10750
10948
  /**
10751
10949
  * Retrieves a collection, in source order, of all controls in a given form.
@@ -10783,10 +10981,15 @@ interface HTMLFormElement extends HTMLElement {
10783
10981
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/name)
10784
10982
  */
10785
10983
  name: string;
10786
- /** Designates a form that is not validated when submitted. */
10984
+ /**
10985
+ * Designates a form that is not validated when submitted.
10986
+ *
10987
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLFormElement/noValidate)
10988
+ */
10787
10989
  noValidate: boolean;
10788
10990
  rel: string;
10789
- readonly relList: DOMTokenList;
10991
+ get relList(): DOMTokenList;
10992
+ set relList(value: string);
10790
10993
  /**
10791
10994
  * Sets or retrieves the window or frame at which to target content.
10792
10995
  *
@@ -11177,7 +11380,8 @@ interface HTMLIFrameElement extends HTMLElement {
11177
11380
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/referrerPolicy) */
11178
11381
  referrerPolicy: ReferrerPolicy;
11179
11382
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/sandbox) */
11180
- readonly sandbox: DOMTokenList;
11383
+ get sandbox(): DOMTokenList;
11384
+ set sandbox(value: string);
11181
11385
  /**
11182
11386
  * Sets or retrieves whether the frame can be scrolled.
11183
11387
  * @deprecated
@@ -11201,6 +11405,7 @@ interface HTMLIFrameElement extends HTMLElement {
11201
11405
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/width)
11202
11406
  */
11203
11407
  width: string;
11408
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIframeElement/getSVGDocument) */
11204
11409
  getSVGDocument(): Document | null;
11205
11410
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLIFrameElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
11206
11411
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -11418,15 +11623,35 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
11418
11623
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/form)
11419
11624
  */
11420
11625
  readonly form: HTMLFormElement | null;
11421
- /** Overrides the action attribute (where the data on a form is sent) on the parent form element. */
11626
+ /**
11627
+ * Overrides the action attribute (where the data on a form is sent) on the parent form element.
11628
+ *
11629
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formAction)
11630
+ */
11422
11631
  formAction: string;
11423
- /** Used to override the encoding (formEnctype attribute) specified on the form element. */
11632
+ /**
11633
+ * Used to override the encoding (formEnctype attribute) specified on the form element.
11634
+ *
11635
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formEnctype)
11636
+ */
11424
11637
  formEnctype: string;
11425
- /** Overrides the submit method attribute previously specified on a form element. */
11638
+ /**
11639
+ * Overrides the submit method attribute previously specified on a form element.
11640
+ *
11641
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formMethod)
11642
+ */
11426
11643
  formMethod: string;
11427
- /** 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. */
11644
+ /**
11645
+ * 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.
11646
+ *
11647
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formNoValidate)
11648
+ */
11428
11649
  formNoValidate: boolean;
11429
- /** Overrides the target attribute on a form element. */
11650
+ /**
11651
+ * Overrides the target attribute on a form element.
11652
+ *
11653
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formTarget)
11654
+ */
11430
11655
  formTarget: string;
11431
11656
  /**
11432
11657
  * Sets or retrieves the height of the object.
@@ -11653,7 +11878,11 @@ declare var HTMLInputElement: {
11653
11878
  interface HTMLLIElement extends HTMLElement {
11654
11879
  /** @deprecated */
11655
11880
  type: string;
11656
- /** Sets or retrieves the value of a list item. */
11881
+ /**
11882
+ * Sets or retrieves the value of a list item.
11883
+ *
11884
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLIElement/value)
11885
+ */
11657
11886
  value: number;
11658
11887
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLLIElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
11659
11888
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -11734,6 +11963,9 @@ declare var HTMLLegendElement: {
11734
11963
  interface HTMLLinkElement extends HTMLElement, LinkStyle {
11735
11964
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/as) */
11736
11965
  as: string;
11966
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/blocking) */
11967
+ get blocking(): DOMTokenList;
11968
+ set blocking(value: string);
11737
11969
  /**
11738
11970
  * Sets or retrieves the character set used to encode the object.
11739
11971
  * @deprecated
@@ -11776,13 +12008,16 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
11776
12008
  */
11777
12009
  rel: string;
11778
12010
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/relList) */
11779
- readonly relList: DOMTokenList;
12011
+ get relList(): DOMTokenList;
12012
+ set relList(value: string);
11780
12013
  /**
11781
12014
  * Sets or retrieves the relationship between the object and the destination of the link.
11782
12015
  * @deprecated
11783
12016
  */
11784
12017
  rev: string;
11785
- readonly sizes: DOMTokenList;
12018
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/sizes) */
12019
+ get sizes(): DOMTokenList;
12020
+ set sizes(value: string);
11786
12021
  /**
11787
12022
  * Sets or retrieves the window or frame at which to target content.
11788
12023
  * @deprecated
@@ -11976,6 +12211,7 @@ interface HTMLMediaElement extends HTMLElement {
11976
12211
  readonly networkState: number;
11977
12212
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/encrypted_event) */
11978
12213
  onencrypted: ((this: HTMLMediaElement, ev: MediaEncryptedEvent) => any) | null;
12214
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/waitingforkey_event) */
11979
12215
  onwaitingforkey: ((this: HTMLMediaElement, ev: Event) => any) | null;
11980
12216
  /**
11981
12217
  * Gets a flag that specifies whether playback is paused.
@@ -11989,7 +12225,11 @@ interface HTMLMediaElement extends HTMLElement {
11989
12225
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/playbackRate)
11990
12226
  */
11991
12227
  playbackRate: number;
11992
- /** Gets TimeRanges for the current media resource that has been played. */
12228
+ /**
12229
+ * Gets TimeRanges for the current media resource that has been played.
12230
+ *
12231
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/played)
12232
+ */
11993
12233
  readonly played: TimeRanges;
11994
12234
  /**
11995
12235
  * Gets or sets a value indicating what data should be preloaded, if any.
@@ -12009,7 +12249,11 @@ interface HTMLMediaElement extends HTMLElement {
12009
12249
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/seekable)
12010
12250
  */
12011
12251
  readonly seekable: TimeRanges;
12012
- /** Gets a flag that indicates whether the client is currently moving to a new playback position in the media resource. */
12252
+ /**
12253
+ * Gets a flag that indicates whether the client is currently moving to a new playback position in the media resource.
12254
+ *
12255
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/seeking)
12256
+ */
12013
12257
  readonly seeking: boolean;
12014
12258
  /**
12015
12259
  * Available only in secure contexts.
@@ -12033,6 +12277,7 @@ interface HTMLMediaElement extends HTMLElement {
12033
12277
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/volume)
12034
12278
  */
12035
12279
  volume: number;
12280
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/addTextTrack) */
12036
12281
  addTextTrack(kind: TextTrackKind, label?: string, language?: string): TextTrack;
12037
12282
  /**
12038
12283
  * Returns a string that specifies whether the client can play a given media resource type.
@@ -12197,7 +12442,11 @@ declare var HTMLMeterElement: {
12197
12442
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLModElement)
12198
12443
  */
12199
12444
  interface HTMLModElement extends HTMLElement {
12200
- /** Sets or retrieves reference information about the object. */
12445
+ /**
12446
+ * Sets or retrieves reference information about the object.
12447
+ *
12448
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLModElement/cite)
12449
+ */
12201
12450
  cite: string;
12202
12451
  /** Sets or retrieves the date and time of a modification to the object. */
12203
12452
  dateTime: string;
@@ -12357,6 +12606,7 @@ interface HTMLObjectElement extends HTMLElement {
12357
12606
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/checkValidity)
12358
12607
  */
12359
12608
  checkValidity(): boolean;
12609
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/getSVGDocument) */
12360
12610
  getSVGDocument(): Document | null;
12361
12611
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLObjectElement/reportValidity) */
12362
12612
  reportValidity(): boolean;
@@ -12476,12 +12726,16 @@ interface HTMLOptionsCollection extends HTMLCollectionOf<HTMLOptionElement> {
12476
12726
  * When set to a smaller number, truncates the number of option elements in the corresponding container.
12477
12727
  *
12478
12728
  * When set to a greater number, adds new blank option elements to that container.
12729
+ *
12730
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionsCollection/length)
12479
12731
  */
12480
12732
  length: number;
12481
12733
  /**
12482
12734
  * Returns the index of the first selected item, if any, or −1 if there is no selected item.
12483
12735
  *
12484
12736
  * Can be set, to change the selection.
12737
+ *
12738
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionsCollection/selectedIndex)
12485
12739
  */
12486
12740
  selectedIndex: number;
12487
12741
  /**
@@ -12492,9 +12746,15 @@ interface HTMLOptionsCollection extends HTMLCollectionOf<HTMLOptionElement> {
12492
12746
  * If before is omitted, null, or a number out of range, then element will be added at the end of the list.
12493
12747
  *
12494
12748
  * This method will throw a "HierarchyRequestError" DOMException if element is an ancestor of the element into which it is to be inserted.
12749
+ *
12750
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionsCollection/add)
12495
12751
  */
12496
12752
  add(element: HTMLOptionElement | HTMLOptGroupElement, before?: HTMLElement | number | null): void;
12497
- /** Removes the item with index index from the collection. */
12753
+ /**
12754
+ * Removes the item with index index from the collection.
12755
+ *
12756
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOptionsCollection/remove)
12757
+ */
12498
12758
  remove(index: number): void;
12499
12759
  }
12500
12760
 
@@ -12524,10 +12784,13 @@ interface HTMLOrSVGElement {
12524
12784
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement)
12525
12785
  */
12526
12786
  interface HTMLOutputElement extends HTMLElement {
12787
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/defaultValue) */
12527
12788
  defaultValue: string;
12528
12789
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/form) */
12529
12790
  readonly form: HTMLFormElement | null;
12530
- readonly htmlFor: DOMTokenList;
12791
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/htmlFor) */
12792
+ get htmlFor(): DOMTokenList;
12793
+ set htmlFor(value: string);
12531
12794
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/labels) */
12532
12795
  readonly labels: NodeListOf<HTMLLabelElement>;
12533
12796
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLOutputElement/name) */
@@ -12712,7 +12975,11 @@ declare var HTMLProgressElement: {
12712
12975
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLQuoteElement)
12713
12976
  */
12714
12977
  interface HTMLQuoteElement extends HTMLElement {
12715
- /** Sets or retrieves reference information about the object. */
12978
+ /**
12979
+ * Sets or retrieves reference information about the object.
12980
+ *
12981
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLQuoteElement/cite)
12982
+ */
12716
12983
  cite: string;
12717
12984
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLQuoteElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
12718
12985
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -12733,6 +13000,9 @@ declare var HTMLQuoteElement: {
12733
13000
  interface HTMLScriptElement extends HTMLElement {
12734
13001
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/async) */
12735
13002
  async: boolean;
13003
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLScriptElement/blocking) */
13004
+ get blocking(): DOMTokenList;
13005
+ set blocking(value: string);
12736
13006
  /**
12737
13007
  * Sets or retrieves the character set used to encode the object.
12738
13008
  * @deprecated
@@ -12801,6 +13071,7 @@ declare var HTMLScriptElement: {
12801
13071
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement)
12802
13072
  */
12803
13073
  interface HTMLSelectElement extends HTMLElement {
13074
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/autocomplete) */
12804
13075
  autocomplete: AutoFill;
12805
13076
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSelectElement/disabled) */
12806
13077
  disabled: boolean;
@@ -12975,13 +13246,27 @@ declare var HTMLSlotElement: {
12975
13246
  interface HTMLSourceElement extends HTMLElement {
12976
13247
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/height) */
12977
13248
  height: number;
12978
- /** Gets or sets the intended media type of the media source. */
13249
+ /**
13250
+ * Gets or sets the intended media type of the media source.
13251
+ *
13252
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/media)
13253
+ */
12979
13254
  media: string;
13255
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/sizes) */
12980
13256
  sizes: string;
12981
- /** The address or URL of the a media resource that is to be considered. */
13257
+ /**
13258
+ * The address or URL of the a media resource that is to be considered.
13259
+ *
13260
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/src)
13261
+ */
12982
13262
  src: string;
13263
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/srcset) */
12983
13264
  srcset: string;
12984
- /** Gets or sets the MIME type of a media resource. */
13265
+ /**
13266
+ * Gets or sets the MIME type of a media resource.
13267
+ *
13268
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/type)
13269
+ */
12985
13270
  type: string;
12986
13271
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLSourceElement/width) */
12987
13272
  width: number;
@@ -13019,6 +13304,9 @@ declare var HTMLSpanElement: {
13019
13304
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLStyleElement)
13020
13305
  */
13021
13306
  interface HTMLStyleElement extends HTMLElement, LinkStyle {
13307
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLStyleElement/blocking) */
13308
+ get blocking(): DOMTokenList;
13309
+ set blocking(value: string);
13022
13310
  /**
13023
13311
  * Enables or disables the style sheet.
13024
13312
  *
@@ -13799,14 +14087,23 @@ declare var HTMLTitleElement: {
13799
14087
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement)
13800
14088
  */
13801
14089
  interface HTMLTrackElement extends HTMLElement {
14090
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/default) */
13802
14091
  default: boolean;
14092
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/kind) */
13803
14093
  kind: string;
14094
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/label) */
13804
14095
  label: string;
14096
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/readyState) */
13805
14097
  readonly readyState: number;
13806
14098
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/src) */
13807
14099
  src: string;
14100
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/srclang) */
13808
14101
  srclang: string;
13809
- /** Returns the TextTrack object corresponding to the text track of the track element. */
14102
+ /**
14103
+ * Returns the TextTrack object corresponding to the text track of the track element.
14104
+ *
14105
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTrackElement/track)
14106
+ */
13810
14107
  readonly track: TextTrack;
13811
14108
  readonly NONE: 0;
13812
14109
  readonly LOADING: 1;
@@ -14827,6 +15124,70 @@ declare var ImageData: {
14827
15124
  new(data: Uint8ClampedArray, sw: number, sh?: number, settings?: ImageDataSettings): ImageData;
14828
15125
  };
14829
15126
 
15127
+ /**
15128
+ * Available only in secure contexts.
15129
+ *
15130
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder)
15131
+ */
15132
+ interface ImageDecoder {
15133
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder/complete) */
15134
+ readonly complete: boolean;
15135
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder/completed) */
15136
+ readonly completed: Promise<undefined>;
15137
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder/tracks) */
15138
+ readonly tracks: ImageTrackList;
15139
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder/type) */
15140
+ readonly type: string;
15141
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder/close) */
15142
+ close(): void;
15143
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder/decode) */
15144
+ decode(options?: ImageDecodeOptions): Promise<ImageDecodeResult>;
15145
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder/reset) */
15146
+ reset(): void;
15147
+ }
15148
+
15149
+ declare var ImageDecoder: {
15150
+ prototype: ImageDecoder;
15151
+ new(init: ImageDecoderInit): ImageDecoder;
15152
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageDecoder/isTypeSupported_static) */
15153
+ isTypeSupported(type: string): Promise<boolean>;
15154
+ };
15155
+
15156
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrack) */
15157
+ interface ImageTrack {
15158
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrack/animated) */
15159
+ readonly animated: boolean;
15160
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrack/frameCount) */
15161
+ readonly frameCount: number;
15162
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrack/repetitionCount) */
15163
+ readonly repetitionCount: number;
15164
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrack/selected) */
15165
+ selected: boolean;
15166
+ }
15167
+
15168
+ declare var ImageTrack: {
15169
+ prototype: ImageTrack;
15170
+ new(): ImageTrack;
15171
+ };
15172
+
15173
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrackList) */
15174
+ interface ImageTrackList {
15175
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrackList/length) */
15176
+ readonly length: number;
15177
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrackList/ready) */
15178
+ readonly ready: Promise<undefined>;
15179
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrackList/selectedIndex) */
15180
+ readonly selectedIndex: number;
15181
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ImageTrackList/selectedTrack) */
15182
+ readonly selectedTrack: ImageTrack | null;
15183
+ [index: number]: ImageTrack;
15184
+ }
15185
+
15186
+ declare var ImageTrackList: {
15187
+ prototype: ImageTrackList;
15188
+ new(): ImageTrackList;
15189
+ };
15190
+
14830
15191
  interface ImportMeta {
14831
15192
  url: string;
14832
15193
  resolve(specifier: string): string;
@@ -16041,7 +16402,23 @@ declare var MessageEvent: {
16041
16402
  new<T>(type: string, eventInitDict?: MessageEventInit<T>): MessageEvent<T>;
16042
16403
  };
16043
16404
 
16044
- interface MessagePortEventMap {
16405
+ interface MessageEventTargetEventMap {
16406
+ "message": MessageEvent;
16407
+ "messageerror": MessageEvent;
16408
+ }
16409
+
16410
+ interface MessageEventTarget<T> {
16411
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/message_event) */
16412
+ onmessage: ((this: T, ev: MessageEvent) => any) | null;
16413
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/messageerror_event) */
16414
+ onmessageerror: ((this: T, ev: MessageEvent) => any) | null;
16415
+ addEventListener<K extends keyof MessageEventTargetEventMap>(type: K, listener: (this: MessageEventTarget<T>, ev: MessageEventTargetEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
16416
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
16417
+ removeEventListener<K extends keyof MessageEventTargetEventMap>(type: K, listener: (this: MessageEventTarget<T>, ev: MessageEventTargetEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
16418
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
16419
+ }
16420
+
16421
+ interface MessagePortEventMap extends MessageEventTargetEventMap {
16045
16422
  "message": MessageEvent;
16046
16423
  "messageerror": MessageEvent;
16047
16424
  }
@@ -16051,11 +16428,7 @@ interface MessagePortEventMap {
16051
16428
  *
16052
16429
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessagePort)
16053
16430
  */
16054
- interface MessagePort extends EventTarget {
16055
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessagePort/message_event) */
16056
- onmessage: ((this: MessagePort, ev: MessageEvent) => any) | null;
16057
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessagePort/messageerror_event) */
16058
- onmessageerror: ((this: MessagePort, ev: MessageEvent) => any) | null;
16431
+ interface MessagePort extends EventTarget, MessageEventTarget<MessagePort> {
16059
16432
  /**
16060
16433
  * Disconnects the port, so that it is no longer active.
16061
16434
  *
@@ -16338,6 +16711,52 @@ declare var NamedNodeMap: {
16338
16711
  new(): NamedNodeMap;
16339
16712
  };
16340
16713
 
16714
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationActivation) */
16715
+ interface NavigationActivation {
16716
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationActivation/entry) */
16717
+ readonly entry: NavigationHistoryEntry;
16718
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationActivation/from) */
16719
+ readonly from: NavigationHistoryEntry | null;
16720
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationActivation/navigationType) */
16721
+ readonly navigationType: NavigationType;
16722
+ }
16723
+
16724
+ declare var NavigationActivation: {
16725
+ prototype: NavigationActivation;
16726
+ new(): NavigationActivation;
16727
+ };
16728
+
16729
+ interface NavigationHistoryEntryEventMap {
16730
+ "dispose": Event;
16731
+ }
16732
+
16733
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationHistoryEntry) */
16734
+ interface NavigationHistoryEntry extends EventTarget {
16735
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationHistoryEntry/id) */
16736
+ readonly id: string;
16737
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationHistoryEntry/index) */
16738
+ readonly index: number;
16739
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationHistoryEntry/key) */
16740
+ readonly key: string;
16741
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationHistoryEntry/dispose_event) */
16742
+ ondispose: ((this: NavigationHistoryEntry, ev: Event) => any) | null;
16743
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationHistoryEntry/sameDocument) */
16744
+ readonly sameDocument: boolean;
16745
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationHistoryEntry/url) */
16746
+ readonly url: string | null;
16747
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/NavigationHistoryEntry/getState) */
16748
+ getState(): any;
16749
+ addEventListener<K extends keyof NavigationHistoryEntryEventMap>(type: K, listener: (this: NavigationHistoryEntry, ev: NavigationHistoryEntryEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
16750
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
16751
+ removeEventListener<K extends keyof NavigationHistoryEntryEventMap>(type: K, listener: (this: NavigationHistoryEntry, ev: NavigationHistoryEntryEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
16752
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
16753
+ }
16754
+
16755
+ declare var NavigationHistoryEntry: {
16756
+ prototype: NavigationHistoryEntry;
16757
+ new(): NavigationHistoryEntry;
16758
+ };
16759
+
16341
16760
  /**
16342
16761
  * Available only in secure contexts.
16343
16762
  *
@@ -16662,7 +17081,7 @@ interface Node extends EventTarget {
16662
17081
  *
16663
17082
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Node/cloneNode)
16664
17083
  */
16665
- cloneNode(deep?: boolean): Node;
17084
+ cloneNode(subtree?: boolean): Node;
16666
17085
  /**
16667
17086
  * Returns a bitmask indicating the position of other relative to node.
16668
17087
  *
@@ -17195,6 +17614,30 @@ declare var OverconstrainedError: {
17195
17614
  new(constraint: string, message?: string): OverconstrainedError;
17196
17615
  };
17197
17616
 
17617
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PageRevealEvent) */
17618
+ interface PageRevealEvent extends Event {
17619
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PageRevealEvent/viewTransition) */
17620
+ readonly viewTransition: ViewTransition | null;
17621
+ }
17622
+
17623
+ declare var PageRevealEvent: {
17624
+ prototype: PageRevealEvent;
17625
+ new(type: string, eventInitDict?: PageRevealEventInit): PageRevealEvent;
17626
+ };
17627
+
17628
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PageSwapEvent) */
17629
+ interface PageSwapEvent extends Event {
17630
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PageSwapEvent/activation) */
17631
+ readonly activation: NavigationActivation | null;
17632
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PageSwapEvent/viewTransition) */
17633
+ readonly viewTransition: ViewTransition | null;
17634
+ }
17635
+
17636
+ declare var PageSwapEvent: {
17637
+ prototype: PageSwapEvent;
17638
+ new(type: string, eventInitDict?: PageSwapEventInit): PageSwapEvent;
17639
+ };
17640
+
17198
17641
  /**
17199
17642
  * The PageTransitionEvent is fired when a document is being loaded or unloaded.
17200
17643
  *
@@ -18204,6 +18647,7 @@ declare var PointerEvent: {
18204
18647
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PopStateEvent)
18205
18648
  */
18206
18649
  interface PopStateEvent extends Event {
18650
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PopStateEvent/hasUAVisualTransition) */
18207
18651
  readonly hasUAVisualTransition: boolean;
18208
18652
  /**
18209
18653
  * Returns a copy of the information that was provided to pushState() or replaceState().
@@ -18295,6 +18739,7 @@ interface PublicKeyCredential extends Credential {
18295
18739
  declare var PublicKeyCredential: {
18296
18740
  prototype: PublicKeyCredential;
18297
18741
  new(): PublicKeyCredential;
18742
+ getClientCapabilities(): Promise<PublicKeyCredentialClientCapabilities>;
18298
18743
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/isConditionalMediationAvailable_static) */
18299
18744
  isConditionalMediationAvailable(): Promise<boolean>;
18300
18745
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/isUserVerifyingPlatformAuthenticatorAvailable_static) */
@@ -19301,7 +19746,11 @@ interface Request extends Body {
19301
19746
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/integrity)
19302
19747
  */
19303
19748
  readonly integrity: string;
19304
- /** Returns a boolean indicating whether or not request can outlive the global in which it was created. */
19749
+ /**
19750
+ * Returns a boolean indicating whether or not request can outlive the global in which it was created.
19751
+ *
19752
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/keepalive)
19753
+ */
19305
19754
  readonly keepalive: boolean;
19306
19755
  /**
19307
19756
  * Returns request's HTTP method, which is "GET" by default.
@@ -19443,7 +19892,8 @@ declare var Response: {
19443
19892
  */
19444
19893
  interface SVGAElement extends SVGGraphicsElement, SVGURIReference {
19445
19894
  rel: string;
19446
- readonly relList: DOMTokenList;
19895
+ get relList(): DOMTokenList;
19896
+ set relList(value: string);
19447
19897
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAElement/target) */
19448
19898
  readonly target: SVGAnimatedString;
19449
19899
  addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGAElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -19463,11 +19913,17 @@ declare var SVGAElement: {
19463
19913
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAngle)
19464
19914
  */
19465
19915
  interface SVGAngle {
19916
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAngle/unitType) */
19466
19917
  readonly unitType: number;
19918
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAngle/value) */
19467
19919
  value: number;
19920
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAngle/valueAsString) */
19468
19921
  valueAsString: string;
19922
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAngle/valueInSpecifiedUnits) */
19469
19923
  valueInSpecifiedUnits: number;
19924
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAngle/convertToSpecifiedUnits) */
19470
19925
  convertToSpecifiedUnits(unitType: number): void;
19926
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAngle/newValueSpecifiedUnits) */
19471
19927
  newValueSpecifiedUnits(unitType: number, valueInSpecifiedUnits: number): void;
19472
19928
  readonly SVG_ANGLETYPE_UNKNOWN: 0;
19473
19929
  readonly SVG_ANGLETYPE_UNSPECIFIED: 1;
@@ -19531,7 +19987,9 @@ declare var SVGAnimateTransformElement: {
19531
19987
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle)
19532
19988
  */
19533
19989
  interface SVGAnimatedAngle {
19990
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle/animVal) */
19534
19991
  readonly animVal: SVGAngle;
19992
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedAngle/baseVal) */
19535
19993
  readonly baseVal: SVGAngle;
19536
19994
  }
19537
19995
 
@@ -19546,7 +20004,9 @@ declare var SVGAnimatedAngle: {
19546
20004
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean)
19547
20005
  */
19548
20006
  interface SVGAnimatedBoolean {
20007
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean/animVal) */
19549
20008
  readonly animVal: boolean;
20009
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedBoolean/baseVal) */
19550
20010
  baseVal: boolean;
19551
20011
  }
19552
20012
 
@@ -19578,7 +20038,9 @@ declare var SVGAnimatedEnumeration: {
19578
20038
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedInteger)
19579
20039
  */
19580
20040
  interface SVGAnimatedInteger {
20041
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedInteger/animVal) */
19581
20042
  readonly animVal: number;
20043
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedInteger/baseVal) */
19582
20044
  baseVal: number;
19583
20045
  }
19584
20046
 
@@ -19610,7 +20072,9 @@ declare var SVGAnimatedLength: {
19610
20072
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList)
19611
20073
  */
19612
20074
  interface SVGAnimatedLengthList {
20075
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList/animVal) */
19613
20076
  readonly animVal: SVGLengthList;
20077
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedLengthList/baseVal) */
19614
20078
  readonly baseVal: SVGLengthList;
19615
20079
  }
19616
20080
 
@@ -19625,7 +20089,9 @@ declare var SVGAnimatedLengthList: {
19625
20089
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber)
19626
20090
  */
19627
20091
  interface SVGAnimatedNumber {
20092
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber/animVal) */
19628
20093
  readonly animVal: number;
20094
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumber/baseVal) */
19629
20095
  baseVal: number;
19630
20096
  }
19631
20097
 
@@ -19640,7 +20106,9 @@ declare var SVGAnimatedNumber: {
19640
20106
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList)
19641
20107
  */
19642
20108
  interface SVGAnimatedNumberList {
20109
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList/animVal) */
19643
20110
  readonly animVal: SVGNumberList;
20111
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedNumberList/baseVal) */
19644
20112
  readonly baseVal: SVGNumberList;
19645
20113
  }
19646
20114
 
@@ -19650,7 +20118,9 @@ declare var SVGAnimatedNumberList: {
19650
20118
  };
19651
20119
 
19652
20120
  interface SVGAnimatedPoints {
20121
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPolygonElement/animatedPoints) */
19653
20122
  readonly animatedPoints: SVGPointList;
20123
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPolygonElement/points) */
19654
20124
  readonly points: SVGPointList;
19655
20125
  }
19656
20126
 
@@ -19660,7 +20130,9 @@ interface SVGAnimatedPoints {
19660
20130
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedPreserveAspectRatio)
19661
20131
  */
19662
20132
  interface SVGAnimatedPreserveAspectRatio {
20133
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedPreserveAspectRatio/animVal) */
19663
20134
  readonly animVal: SVGPreserveAspectRatio;
20135
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedPreserveAspectRatio/baseVal) */
19664
20136
  readonly baseVal: SVGPreserveAspectRatio;
19665
20137
  }
19666
20138
 
@@ -19675,7 +20147,9 @@ declare var SVGAnimatedPreserveAspectRatio: {
19675
20147
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect)
19676
20148
  */
19677
20149
  interface SVGAnimatedRect {
20150
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect/animVal) */
19678
20151
  readonly animVal: DOMRectReadOnly;
20152
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedRect/baseVal) */
19679
20153
  readonly baseVal: DOMRect;
19680
20154
  }
19681
20155
 
@@ -19707,7 +20181,9 @@ declare var SVGAnimatedString: {
19707
20181
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList)
19708
20182
  */
19709
20183
  interface SVGAnimatedTransformList {
20184
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/animVal) */
19710
20185
  readonly animVal: SVGTransformList;
20186
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimatedTransformList/baseVal) */
19711
20187
  readonly baseVal: SVGTransformList;
19712
20188
  }
19713
20189
 
@@ -19720,9 +20196,13 @@ declare var SVGAnimatedTransformList: {
19720
20196
  interface SVGAnimationElement extends SVGElement, SVGTests {
19721
20197
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/targetElement) */
19722
20198
  readonly targetElement: SVGElement | null;
20199
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/beginElement) */
19723
20200
  beginElement(): void;
20201
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/beginElementAt) */
19724
20202
  beginElementAt(offset: number): void;
20203
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/endElement) */
19725
20204
  endElement(): void;
20205
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/endElementAt) */
19726
20206
  endElementAt(offset: number): void;
19727
20207
  getCurrentTime(): number;
19728
20208
  getSimpleDuration(): number;
@@ -19788,12 +20268,19 @@ declare var SVGClipPathElement: {
19788
20268
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement)
19789
20269
  */
19790
20270
  interface SVGComponentTransferFunctionElement extends SVGElement {
20271
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/amplitude) */
19791
20272
  readonly amplitude: SVGAnimatedNumber;
20273
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/exponent) */
19792
20274
  readonly exponent: SVGAnimatedNumber;
20275
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/intercept) */
19793
20276
  readonly intercept: SVGAnimatedNumber;
20277
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/offset) */
19794
20278
  readonly offset: SVGAnimatedNumber;
20279
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/slope) */
19795
20280
  readonly slope: SVGAnimatedNumber;
20281
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/tableValues) */
19796
20282
  readonly tableValues: SVGAnimatedNumberList;
20283
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGComponentTransferFunctionElement/type) */
19797
20284
  readonly type: SVGAnimatedEnumeration;
19798
20285
  readonly SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN: 0;
19799
20286
  readonly SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY: 1;
@@ -19863,7 +20350,9 @@ interface SVGElementEventMap extends ElementEventMap, GlobalEventHandlersEventMa
19863
20350
  interface SVGElement extends Element, ElementCSSInlineStyle, GlobalEventHandlers, HTMLOrSVGElement {
19864
20351
  /** @deprecated */
19865
20352
  readonly className: any;
20353
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGElement/ownerSVGElement) */
19866
20354
  readonly ownerSVGElement: SVGSVGElement | null;
20355
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGElement/viewportElement) */
19867
20356
  readonly viewportElement: SVGElement | null;
19868
20357
  addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
19869
20358
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -19957,8 +20446,11 @@ declare var SVGFEBlendElement: {
19957
20446
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement)
19958
20447
  */
19959
20448
  interface SVGFEColorMatrixElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
20449
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement/in1) */
19960
20450
  readonly in1: SVGAnimatedString;
20451
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement/type) */
19961
20452
  readonly type: SVGAnimatedEnumeration;
20453
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEColorMatrixElement/values) */
19962
20454
  readonly values: SVGAnimatedNumberList;
19963
20455
  readonly SVG_FECOLORMATRIX_TYPE_UNKNOWN: 0;
19964
20456
  readonly SVG_FECOLORMATRIX_TYPE_MATRIX: 1;
@@ -20080,10 +20572,15 @@ declare var SVGFEConvolveMatrixElement: {
20080
20572
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDiffuseLightingElement)
20081
20573
  */
20082
20574
  interface SVGFEDiffuseLightingElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
20575
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDiffuseLightingElement/diffuseConstant) */
20083
20576
  readonly diffuseConstant: SVGAnimatedNumber;
20577
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDiffuseLightingElement/in1) */
20084
20578
  readonly in1: SVGAnimatedString;
20579
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDiffuseLightingElement/kernelUnitLengthX) */
20085
20580
  readonly kernelUnitLengthX: SVGAnimatedNumber;
20581
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDiffuseLightingElement/kernelUnitLengthY) */
20086
20582
  readonly kernelUnitLengthY: SVGAnimatedNumber;
20583
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDiffuseLightingElement/surfaceScale) */
20087
20584
  readonly surfaceScale: SVGAnimatedNumber;
20088
20585
  addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEDiffuseLightingElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
20089
20586
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20134,7 +20631,9 @@ declare var SVGFEDisplacementMapElement: {
20134
20631
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDistantLightElement)
20135
20632
  */
20136
20633
  interface SVGFEDistantLightElement extends SVGElement {
20634
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDistantLightElement/azimuth) */
20137
20635
  readonly azimuth: SVGAnimatedNumber;
20636
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEDistantLightElement/elevation) */
20138
20637
  readonly elevation: SVGAnimatedNumber;
20139
20638
  addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEDistantLightElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
20140
20639
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20257,9 +20756,13 @@ declare var SVGFEFuncRElement: {
20257
20756
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEGaussianBlurElement)
20258
20757
  */
20259
20758
  interface SVGFEGaussianBlurElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
20759
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEGaussianBlurElement/in1) */
20260
20760
  readonly in1: SVGAnimatedString;
20761
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEGaussianBlurElement/stdDeviationX) */
20261
20762
  readonly stdDeviationX: SVGAnimatedNumber;
20763
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEGaussianBlurElement/stdDeviationY) */
20262
20764
  readonly stdDeviationY: SVGAnimatedNumber;
20765
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEGaussianBlurElement/setStdDeviation) */
20263
20766
  setStdDeviation(stdDeviationX: number, stdDeviationY: number): void;
20264
20767
  addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEGaussianBlurElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
20265
20768
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20313,6 +20816,7 @@ declare var SVGFEMergeElement: {
20313
20816
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEMergeNodeElement)
20314
20817
  */
20315
20818
  interface SVGFEMergeNodeElement extends SVGElement {
20819
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEMergeNodeElement/in1) */
20316
20820
  readonly in1: SVGAnimatedString;
20317
20821
  addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEMergeNodeElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
20318
20822
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20331,9 +20835,13 @@ declare var SVGFEMergeNodeElement: {
20331
20835
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEMorphologyElement)
20332
20836
  */
20333
20837
  interface SVGFEMorphologyElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
20838
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEMorphologyElement/in1) */
20334
20839
  readonly in1: SVGAnimatedString;
20840
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEMorphologyElement/operator) */
20335
20841
  readonly operator: SVGAnimatedEnumeration;
20842
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEMorphologyElement/radiusX) */
20336
20843
  readonly radiusX: SVGAnimatedNumber;
20844
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFEMorphologyElement/radiusY) */
20337
20845
  readonly radiusY: SVGAnimatedNumber;
20338
20846
  readonly SVG_MORPHOLOGY_OPERATOR_UNKNOWN: 0;
20339
20847
  readonly SVG_MORPHOLOGY_OPERATOR_ERODE: 1;
@@ -20398,11 +20906,15 @@ declare var SVGFEPointLightElement: {
20398
20906
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement)
20399
20907
  */
20400
20908
  interface SVGFESpecularLightingElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
20909
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/in1) */
20401
20910
  readonly in1: SVGAnimatedString;
20402
20911
  readonly kernelUnitLengthX: SVGAnimatedNumber;
20403
20912
  readonly kernelUnitLengthY: SVGAnimatedNumber;
20913
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/specularConstant) */
20404
20914
  readonly specularConstant: SVGAnimatedNumber;
20915
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/specularExponent) */
20405
20916
  readonly specularExponent: SVGAnimatedNumber;
20917
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFESpecularLightingElement/surfaceScale) */
20406
20918
  readonly surfaceScale: SVGAnimatedNumber;
20407
20919
  addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFESpecularLightingElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
20408
20920
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20499,11 +21011,17 @@ declare var SVGFETurbulenceElement: {
20499
21011
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement)
20500
21012
  */
20501
21013
  interface SVGFilterElement extends SVGElement, SVGURIReference {
21014
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement/filterUnits) */
20502
21015
  readonly filterUnits: SVGAnimatedEnumeration;
21016
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement/height) */
20503
21017
  readonly height: SVGAnimatedLength;
21018
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement/primitiveUnits) */
20504
21019
  readonly primitiveUnits: SVGAnimatedEnumeration;
21020
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement/width) */
20505
21021
  readonly width: SVGAnimatedLength;
21022
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement/x) */
20506
21023
  readonly x: SVGAnimatedLength;
21024
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGFilterElement/y) */
20507
21025
  readonly y: SVGAnimatedLength;
20508
21026
  addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFilterElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
20509
21027
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20598,8 +21116,11 @@ declare var SVGGeometryElement: {
20598
21116
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGradientElement)
20599
21117
  */
20600
21118
  interface SVGGradientElement extends SVGElement, SVGURIReference {
21119
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGradientElement/gradientTransform) */
20601
21120
  readonly gradientTransform: SVGAnimatedTransformList;
21121
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGradientElement/gradientUnits) */
20602
21122
  readonly gradientUnits: SVGAnimatedEnumeration;
21123
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGGradientElement/spreadMethod) */
20603
21124
  readonly spreadMethod: SVGAnimatedEnumeration;
20604
21125
  readonly SVG_SPREADMETHOD_UNKNOWN: 0;
20605
21126
  readonly SVG_SPREADMETHOD_PAD: 1;
@@ -20749,9 +21270,13 @@ declare var SVGLengthList: {
20749
21270
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLineElement)
20750
21271
  */
20751
21272
  interface SVGLineElement extends SVGGeometryElement {
21273
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLineElement/x1) */
20752
21274
  readonly x1: SVGAnimatedLength;
21275
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLineElement/x2) */
20753
21276
  readonly x2: SVGAnimatedLength;
21277
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLineElement/y1) */
20754
21278
  readonly y1: SVGAnimatedLength;
21279
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLineElement/y2) */
20755
21280
  readonly y2: SVGAnimatedLength;
20756
21281
  addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGLineElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
20757
21282
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20770,9 +21295,13 @@ declare var SVGLineElement: {
20770
21295
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement)
20771
21296
  */
20772
21297
  interface SVGLinearGradientElement extends SVGGradientElement {
21298
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/x1) */
20773
21299
  readonly x1: SVGAnimatedLength;
21300
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/x2) */
20774
21301
  readonly x2: SVGAnimatedLength;
21302
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/y1) */
20775
21303
  readonly y1: SVGAnimatedLength;
21304
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGLinearGradientElement/y2) */
20776
21305
  readonly y2: SVGAnimatedLength;
20777
21306
  addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGLinearGradientElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
20778
21307
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20907,14 +21436,23 @@ declare var SVGNumber: {
20907
21436
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList)
20908
21437
  */
20909
21438
  interface SVGNumberList {
21439
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/length) */
20910
21440
  readonly length: number;
21441
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/numberOfItems) */
20911
21442
  readonly numberOfItems: number;
21443
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/appendItem) */
20912
21444
  appendItem(newItem: SVGNumber): SVGNumber;
21445
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/clear) */
20913
21446
  clear(): void;
21447
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/getItem) */
20914
21448
  getItem(index: number): SVGNumber;
21449
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/initialize) */
20915
21450
  initialize(newItem: SVGNumber): SVGNumber;
21451
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/insertItemBefore) */
20916
21452
  insertItemBefore(newItem: SVGNumber, index: number): SVGNumber;
21453
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/removeItem) */
20917
21454
  removeItem(index: number): SVGNumber;
21455
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGNumberList/replaceItem) */
20918
21456
  replaceItem(newItem: SVGNumber, index: number): SVGNumber;
20919
21457
  [index: number]: SVGNumber;
20920
21458
  }
@@ -20948,8 +21486,11 @@ declare var SVGPathElement: {
20948
21486
  */
20949
21487
  interface SVGPatternElement extends SVGElement, SVGFitToViewBox, SVGURIReference {
20950
21488
  readonly height: SVGAnimatedLength;
21489
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternContentUnits) */
20951
21490
  readonly patternContentUnits: SVGAnimatedEnumeration;
21491
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternTransform) */
20952
21492
  readonly patternTransform: SVGAnimatedTransformList;
21493
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPatternElement/patternUnits) */
20953
21494
  readonly patternUnits: SVGAnimatedEnumeration;
20954
21495
  readonly width: SVGAnimatedLength;
20955
21496
  readonly x: SVGAnimatedLength;
@@ -21076,11 +21617,16 @@ declare var SVGPreserveAspectRatio: {
21076
21617
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement)
21077
21618
  */
21078
21619
  interface SVGRadialGradientElement extends SVGGradientElement {
21620
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/cx) */
21079
21621
  readonly cx: SVGAnimatedLength;
21622
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/cy) */
21080
21623
  readonly cy: SVGAnimatedLength;
21081
21624
  readonly fr: SVGAnimatedLength;
21625
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/fx) */
21082
21626
  readonly fx: SVGAnimatedLength;
21627
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/fy) */
21083
21628
  readonly fy: SVGAnimatedLength;
21629
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRadialGradientElement/r) */
21084
21630
  readonly r: SVGAnimatedLength;
21085
21631
  addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGRadialGradientElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
21086
21632
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -21099,11 +21645,17 @@ declare var SVGRadialGradientElement: {
21099
21645
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement)
21100
21646
  */
21101
21647
  interface SVGRectElement extends SVGGeometryElement {
21648
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/height) */
21102
21649
  readonly height: SVGAnimatedLength;
21650
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/rx) */
21103
21651
  readonly rx: SVGAnimatedLength;
21652
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/ry) */
21104
21653
  readonly ry: SVGAnimatedLength;
21654
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/width) */
21105
21655
  readonly width: SVGAnimatedLength;
21656
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/x) */
21106
21657
  readonly x: SVGAnimatedLength;
21658
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGRectElement/y) */
21107
21659
  readonly y: SVGAnimatedLength;
21108
21660
  addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGRectElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
21109
21661
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -21206,6 +21758,7 @@ declare var SVGSetElement: {
21206
21758
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStopElement)
21207
21759
  */
21208
21760
  interface SVGStopElement extends SVGElement {
21761
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGStopElement/offset) */
21209
21762
  readonly offset: SVGAnimatedNumber;
21210
21763
  addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGStopElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
21211
21764
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -21321,7 +21874,9 @@ declare var SVGTSpanElement: {
21321
21874
  };
21322
21875
 
21323
21876
  interface SVGTests {
21877
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/requiredExtensions) */
21324
21878
  readonly requiredExtensions: SVGStringList;
21879
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAnimationElement/systemLanguage) */
21325
21880
  readonly systemLanguage: SVGStringList;
21326
21881
  }
21327
21882
 
@@ -21331,15 +21886,25 @@ interface SVGTests {
21331
21886
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement)
21332
21887
  */
21333
21888
  interface SVGTextContentElement extends SVGGraphicsElement {
21889
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/lengthAdjust) */
21334
21890
  readonly lengthAdjust: SVGAnimatedEnumeration;
21891
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/textLength) */
21335
21892
  readonly textLength: SVGAnimatedLength;
21893
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getCharNumAtPosition) */
21336
21894
  getCharNumAtPosition(point?: DOMPointInit): number;
21895
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getComputedTextLength) */
21337
21896
  getComputedTextLength(): number;
21897
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getEndPositionOfChar) */
21338
21898
  getEndPositionOfChar(charnum: number): DOMPoint;
21899
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getExtentOfChar) */
21339
21900
  getExtentOfChar(charnum: number): DOMRect;
21901
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getNumberOfChars) */
21340
21902
  getNumberOfChars(): number;
21903
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getRotationOfChar) */
21341
21904
  getRotationOfChar(charnum: number): number;
21905
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getStartPositionOfChar) */
21342
21906
  getStartPositionOfChar(charnum: number): DOMPoint;
21907
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextContentElement/getSubStringLength) */
21343
21908
  getSubStringLength(charnum: number, nchars: number): number;
21344
21909
  /** @deprecated */
21345
21910
  selectSubString(charnum: number, nchars: number): void;
@@ -21383,8 +21948,11 @@ declare var SVGTextElement: {
21383
21948
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPathElement)
21384
21949
  */
21385
21950
  interface SVGTextPathElement extends SVGTextContentElement, SVGURIReference {
21951
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPathElement/method) */
21386
21952
  readonly method: SVGAnimatedEnumeration;
21953
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPathElement/spacing) */
21387
21954
  readonly spacing: SVGAnimatedEnumeration;
21955
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTextPathElement/startOffset) */
21388
21956
  readonly startOffset: SVGAnimatedLength;
21389
21957
  readonly TEXTPATH_METHODTYPE_UNKNOWN: 0;
21390
21958
  readonly TEXTPATH_METHODTYPE_ALIGN: 1;
@@ -21454,14 +22022,23 @@ declare var SVGTitleElement: {
21454
22022
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform)
21455
22023
  */
21456
22024
  interface SVGTransform {
22025
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/angle) */
21457
22026
  readonly angle: number;
22027
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/matrix) */
21458
22028
  readonly matrix: DOMMatrix;
22029
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/type) */
21459
22030
  readonly type: number;
22031
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setMatrix) */
21460
22032
  setMatrix(matrix?: DOMMatrix2DInit): void;
22033
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setRotate) */
21461
22034
  setRotate(angle: number, cx: number, cy: number): void;
22035
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setScale) */
21462
22036
  setScale(sx: number, sy: number): void;
22037
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setSkewX) */
21463
22038
  setSkewX(angle: number): void;
22039
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setSkewY) */
21464
22040
  setSkewY(angle: number): void;
22041
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransform/setTranslate) */
21465
22042
  setTranslate(tx: number, ty: number): void;
21466
22043
  readonly SVG_TRANSFORM_UNKNOWN: 0;
21467
22044
  readonly SVG_TRANSFORM_MATRIX: 1;
@@ -21490,16 +22067,27 @@ declare var SVGTransform: {
21490
22067
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList)
21491
22068
  */
21492
22069
  interface SVGTransformList {
22070
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/length) */
21493
22071
  readonly length: number;
22072
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/numberOfItems) */
21494
22073
  readonly numberOfItems: number;
22074
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/appendItem) */
21495
22075
  appendItem(newItem: SVGTransform): SVGTransform;
22076
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/clear) */
21496
22077
  clear(): void;
22078
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/consolidate) */
21497
22079
  consolidate(): SVGTransform | null;
22080
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/createSVGTransformFromMatrix) */
21498
22081
  createSVGTransformFromMatrix(matrix?: DOMMatrix2DInit): SVGTransform;
22082
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/getItem) */
21499
22083
  getItem(index: number): SVGTransform;
22084
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/initialize) */
21500
22085
  initialize(newItem: SVGTransform): SVGTransform;
22086
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/insertItemBefore) */
21501
22087
  insertItemBefore(newItem: SVGTransform, index: number): SVGTransform;
22088
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/removeItem) */
21502
22089
  removeItem(index: number): SVGTransform;
22090
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGTransformList/replaceItem) */
21503
22091
  replaceItem(newItem: SVGTransform, index: number): SVGTransform;
21504
22092
  [index: number]: SVGTransform;
21505
22093
  }
@@ -21510,6 +22098,7 @@ declare var SVGTransformList: {
21510
22098
  };
21511
22099
 
21512
22100
  interface SVGURIReference {
22101
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGAElement/href) */
21513
22102
  readonly href: SVGAnimatedString;
21514
22103
  }
21515
22104
 
@@ -21728,7 +22317,7 @@ interface Selection {
21728
22317
  containsNode(node: Node, allowPartialContainment?: boolean): boolean;
21729
22318
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/deleteFromDocument) */
21730
22319
  deleteFromDocument(): void;
21731
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/removeAllRanges) */
22320
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/empty) */
21732
22321
  empty(): void;
21733
22322
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/extend) */
21734
22323
  extend(node: Node, offset?: number): void;
@@ -21744,7 +22333,7 @@ interface Selection {
21744
22333
  selectAllChildren(node: Node): void;
21745
22334
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/setBaseAndExtent) */
21746
22335
  setBaseAndExtent(anchorNode: Node, anchorOffset: number, focusNode: Node, focusOffset: number): void;
21747
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/collapse) */
22336
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Selection/setPosition) */
21748
22337
  setPosition(node: Node | null, offset?: number): void;
21749
22338
  toString(): string;
21750
22339
  }
@@ -22407,7 +22996,8 @@ interface StyleSheet {
22407
22996
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet/href) */
22408
22997
  readonly href: string | null;
22409
22998
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet/media) */
22410
- readonly media: MediaList;
22999
+ get media(): MediaList;
23000
+ set media(mediaText: string);
22411
23001
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet/ownerNode) */
22412
23002
  readonly ownerNode: Element | ProcessingInstruction | null;
22413
23003
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/StyleSheet/parentStyleSheet) */
@@ -22478,7 +23068,7 @@ interface SubtleCrypto {
22478
23068
  exportKey(format: Exclude<KeyFormat, "jwk">, key: CryptoKey): Promise<ArrayBuffer>;
22479
23069
  exportKey(format: KeyFormat, key: CryptoKey): Promise<ArrayBuffer | JsonWebKey>;
22480
23070
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/generateKey) */
22481
- generateKey(algorithm: "Ed25519", extractable: boolean, keyUsages: ReadonlyArray<"sign" | "verify">): Promise<CryptoKeyPair>;
23071
+ generateKey(algorithm: "Ed25519" | { name: "Ed25519" }, extractable: boolean, keyUsages: ReadonlyArray<"sign" | "verify">): Promise<CryptoKeyPair>;
22482
23072
  generateKey(algorithm: RsaHashedKeyGenParams | EcKeyGenParams, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKeyPair>;
22483
23073
  generateKey(algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params, extractable: boolean, keyUsages: ReadonlyArray<KeyUsage>): Promise<CryptoKey>;
22484
23074
  generateKey(algorithm: AlgorithmIdentifier, extractable: boolean, keyUsages: KeyUsage[]): Promise<CryptoKeyPair | CryptoKey>;
@@ -23580,6 +24170,7 @@ interface ViewTransition {
23580
24170
  readonly finished: Promise<undefined>;
23581
24171
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/ready) */
23582
24172
  readonly ready: Promise<undefined>;
24173
+ types: ViewTransitionTypeSet;
23583
24174
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/updateCallbackDone) */
23584
24175
  readonly updateCallbackDone: Promise<undefined>;
23585
24176
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ViewTransition/skipTransition) */
@@ -23591,6 +24182,15 @@ declare var ViewTransition: {
23591
24182
  new(): ViewTransition;
23592
24183
  };
23593
24184
 
24185
+ interface ViewTransitionTypeSet {
24186
+ forEach(callbackfn: (value: string, key: string, parent: ViewTransitionTypeSet) => void, thisArg?: any): void;
24187
+ }
24188
+
24189
+ declare var ViewTransitionTypeSet: {
24190
+ prototype: ViewTransitionTypeSet;
24191
+ new(): ViewTransitionTypeSet;
24192
+ };
24193
+
23594
24194
  interface VisualViewportEventMap {
23595
24195
  "resize": Event;
23596
24196
  "scroll": Event;
@@ -24456,7 +25056,7 @@ interface WebGL2RenderingContextBase {
24456
25056
  clearBufferuiv(buffer: GLenum, drawbuffer: GLint, values: Uint32List, srcOffset?: number): void;
24457
25057
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/clientWaitSync) */
24458
25058
  clientWaitSync(sync: WebGLSync, flags: GLbitfield, timeout: GLuint64): GLenum;
24459
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/compressedTexImage2D) */
25059
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/compressedTexImage3D) */
24460
25060
  compressedTexImage3D(target: GLenum, level: GLint, internalformat: GLenum, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, imageSize: GLsizei, offset: GLintptr): void;
24461
25061
  compressedTexImage3D(target: GLenum, level: GLint, internalformat: GLenum, width: GLsizei, height: GLsizei, depth: GLsizei, border: GLint, srcData: ArrayBufferView, srcOffset?: number, srcLengthOverride?: GLuint): void;
24462
25062
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/compressedTexSubImage3D) */
@@ -24878,11 +25478,11 @@ interface WebGL2RenderingContextBase {
24878
25478
  }
24879
25479
 
24880
25480
  interface WebGL2RenderingContextOverloads {
24881
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/bufferData) */
25481
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/bufferData) */
24882
25482
  bufferData(target: GLenum, size: GLsizeiptr, usage: GLenum): void;
24883
25483
  bufferData(target: GLenum, srcData: AllowSharedBufferSource | null, usage: GLenum): void;
24884
25484
  bufferData(target: GLenum, srcData: ArrayBufferView, usage: GLenum, srcOffset: number, length?: GLuint): void;
24885
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/bufferSubData) */
25485
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/bufferSubData) */
24886
25486
  bufferSubData(target: GLenum, dstByteOffset: GLintptr, srcData: AllowSharedBufferSource): void;
24887
25487
  bufferSubData(target: GLenum, dstByteOffset: GLintptr, srcData: ArrayBufferView, srcOffset: number, length?: GLuint): void;
24888
25488
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/compressedTexImage2D) */
@@ -24923,7 +25523,7 @@ interface WebGL2RenderingContextOverloads {
24923
25523
  uniform4fv(location: WebGLUniformLocation | null, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;
24924
25524
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniform) */
24925
25525
  uniform4iv(location: WebGLUniformLocation | null, data: Int32List, srcOffset?: number, srcLength?: GLuint): void;
24926
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */
25526
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/uniformMatrix) */
24927
25527
  uniformMatrix2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;
24928
25528
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/uniformMatrix) */
24929
25529
  uniformMatrix3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Float32List, srcOffset?: number, srcLength?: GLuint): void;
@@ -25339,12 +25939,14 @@ declare var WebGLRenderingContext: {
25339
25939
  interface WebGLRenderingContextBase {
25340
25940
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/canvas) */
25341
25941
  readonly canvas: HTMLCanvasElement | OffscreenCanvas;
25342
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/drawingBufferColorSpace) */
25942
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/drawingBufferColorSpace) */
25343
25943
  drawingBufferColorSpace: PredefinedColorSpace;
25344
25944
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/drawingBufferHeight) */
25345
25945
  readonly drawingBufferHeight: GLsizei;
25346
25946
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/drawingBufferWidth) */
25347
25947
  readonly drawingBufferWidth: GLsizei;
25948
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/unpackColorSpace) */
25949
+ unpackColorSpace: PredefinedColorSpace;
25348
25950
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/activeTexture) */
25349
25951
  activeTexture(texture: GLenum): void;
25350
25952
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/attachShader) */
@@ -25543,6 +26145,7 @@ interface WebGLRenderingContextBase {
25543
26145
  isShader(shader: WebGLShader | null): GLboolean;
25544
26146
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/isTexture) */
25545
26147
  isTexture(texture: WebGLTexture | null): GLboolean;
26148
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/lineWidth) */
25546
26149
  lineWidth(width: GLfloat): void;
25547
26150
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/linkProgram) */
25548
26151
  linkProgram(program: WebGLProgram): void;
@@ -26326,7 +26929,7 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
26326
26929
  readonly length: number;
26327
26930
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/location) */
26328
26931
  get location(): Location;
26329
- set location(href: string | Location);
26932
+ set location(href: string);
26330
26933
  /**
26331
26934
  * Returns true if the location bar is visible; otherwise, returns false.
26332
26935
  *
@@ -26379,17 +26982,9 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
26379
26982
  readonly outerHeight: number;
26380
26983
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/outerWidth) */
26381
26984
  readonly outerWidth: number;
26382
- /**
26383
- * @deprecated This is a legacy alias of `scrollX`.
26384
- *
26385
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollX)
26386
- */
26985
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollX) */
26387
26986
  readonly pageXOffset: number;
26388
- /**
26389
- * @deprecated This is a legacy alias of `scrollY`.
26390
- *
26391
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollY)
26392
- */
26987
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollY) */
26393
26988
  readonly pageYOffset: number;
26394
26989
  /**
26395
26990
  * Refers to either the parent WindowProxy, or itself.
@@ -26566,7 +27161,9 @@ interface WindowEventHandlersEventMap {
26566
27161
  "offline": Event;
26567
27162
  "online": Event;
26568
27163
  "pagehide": PageTransitionEvent;
27164
+ "pagereveal": Event;
26569
27165
  "pageshow": PageTransitionEvent;
27166
+ "pageswap": Event;
26570
27167
  "popstate": PopStateEvent;
26571
27168
  "rejectionhandled": PromiseRejectionEvent;
26572
27169
  "storage": StorageEvent;
@@ -26599,8 +27196,12 @@ interface WindowEventHandlers {
26599
27196
  ononline: ((this: WindowEventHandlers, ev: Event) => any) | null;
26600
27197
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/pagehide_event) */
26601
27198
  onpagehide: ((this: WindowEventHandlers, ev: PageTransitionEvent) => any) | null;
27199
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/pagereveal_event) */
27200
+ onpagereveal: ((this: WindowEventHandlers, ev: Event) => any) | null;
26602
27201
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/pageshow_event) */
26603
27202
  onpageshow: ((this: WindowEventHandlers, ev: PageTransitionEvent) => any) | null;
27203
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/pageswap_event) */
27204
+ onpageswap: ((this: WindowEventHandlers, ev: Event) => any) | null;
26604
27205
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/popstate_event) */
26605
27206
  onpopstate: ((this: WindowEventHandlers, ev: PopStateEvent) => any) | null;
26606
27207
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/rejectionhandled_event) */
@@ -26649,24 +27250,24 @@ interface WindowOrWorkerGlobalScope {
26649
27250
  atob(data: string): string;
26650
27251
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/btoa) */
26651
27252
  btoa(data: string): string;
26652
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/clearInterval) */
27253
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/clearInterval) */
26653
27254
  clearInterval(id: number | undefined): void;
26654
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/clearTimeout) */
27255
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/clearTimeout) */
26655
27256
  clearTimeout(id: number | undefined): void;
26656
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/createImageBitmap) */
27257
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/createImageBitmap) */
26657
27258
  createImageBitmap(image: ImageBitmapSource, options?: ImageBitmapOptions): Promise<ImageBitmap>;
26658
27259
  createImageBitmap(image: ImageBitmapSource, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise<ImageBitmap>;
26659
27260
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch) */
26660
27261
  fetch(input: RequestInfo | URL, init?: RequestInit): Promise<Response>;
26661
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/queueMicrotask) */
27262
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/queueMicrotask) */
26662
27263
  queueMicrotask(callback: VoidFunction): void;
26663
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/reportError) */
27264
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/reportError) */
26664
27265
  reportError(e: any): void;
26665
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/setInterval) */
27266
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/setInterval) */
26666
27267
  setInterval(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;
26667
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/setTimeout) */
27268
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/setTimeout) */
26668
27269
  setTimeout(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;
26669
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/structuredClone) */
27270
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/structuredClone) */
26670
27271
  structuredClone<T = any>(value: T, options?: StructuredSerializeOptions): T;
26671
27272
  }
26672
27273
 
@@ -26675,7 +27276,7 @@ interface WindowSessionStorage {
26675
27276
  readonly sessionStorage: Storage;
26676
27277
  }
26677
27278
 
26678
- interface WorkerEventMap extends AbstractWorkerEventMap {
27279
+ interface WorkerEventMap extends AbstractWorkerEventMap, MessageEventTargetEventMap {
26679
27280
  "message": MessageEvent;
26680
27281
  "messageerror": MessageEvent;
26681
27282
  }
@@ -26685,11 +27286,7 @@ interface WorkerEventMap extends AbstractWorkerEventMap {
26685
27286
  *
26686
27287
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Worker)
26687
27288
  */
26688
- interface Worker extends EventTarget, AbstractWorker {
26689
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Worker/message_event) */
26690
- onmessage: ((this: Worker, ev: MessageEvent) => any) | null;
26691
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Worker/messageerror_event) */
26692
- onmessageerror: ((this: Worker, ev: MessageEvent) => any) | null;
27289
+ interface Worker extends EventTarget, AbstractWorker, MessageEventTarget<Worker> {
26693
27290
  /**
26694
27291
  * Clones message and transmits it to worker's global environment. transfer can be passed as a list of objects that are to be transferred rather than cloned.
26695
27292
  *
@@ -28022,17 +28619,9 @@ declare var orientation: number;
28022
28619
  declare var outerHeight: number;
28023
28620
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/outerWidth) */
28024
28621
  declare var outerWidth: number;
28025
- /**
28026
- * @deprecated This is a legacy alias of `scrollX`.
28027
- *
28028
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollX)
28029
- */
28622
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollX) */
28030
28623
  declare var pageXOffset: number;
28031
- /**
28032
- * @deprecated This is a legacy alias of `scrollY`.
28033
- *
28034
- * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollY)
28035
- */
28624
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollY) */
28036
28625
  declare var pageYOffset: number;
28037
28626
  /**
28038
28627
  * Refers to either the parent WindowProxy, or itself.
@@ -28223,7 +28812,7 @@ declare var onbeforetoggle: ((this: Window, ev: Event) => any) | null;
28223
28812
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/blur_event)
28224
28813
  */
28225
28814
  declare var onblur: ((this: Window, ev: FocusEvent) => any) | null;
28226
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/cancel_event) */
28815
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/cancel_event) */
28227
28816
  declare var oncancel: ((this: Window, ev: Event) => any) | null;
28228
28817
  /**
28229
28818
  * Occurs when playback is possible, but would require further buffering.
@@ -28250,7 +28839,7 @@ declare var onchange: ((this: Window, ev: Event) => any) | null;
28250
28839
  declare var onclick: ((this: Window, ev: MouseEvent) => any) | null;
28251
28840
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/close_event) */
28252
28841
  declare var onclose: ((this: Window, ev: Event) => any) | null;
28253
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/webglcontextlost_event) */
28842
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLCanvasElement/contextlost_event) */
28254
28843
  declare var oncontextlost: ((this: Window, ev: Event) => any) | null;
28255
28844
  /**
28256
28845
  * Fires when the user clicks the right mouse button in the client area, opening the context menu.
@@ -28575,7 +29164,7 @@ declare var onsuspend: ((this: Window, ev: Event) => any) | null;
28575
29164
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/timeupdate_event)
28576
29165
  */
28577
29166
  declare var ontimeupdate: ((this: Window, ev: Event) => any) | null;
28578
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDetailsElement/toggle_event) */
29167
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/toggle_event) */
28579
29168
  declare var ontoggle: ((this: Window, ev: Event) => any) | null;
28580
29169
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/touchcancel_event) */
28581
29170
  declare var ontouchcancel: ((this: Window, ev: TouchEvent) => any) | null | undefined;
@@ -28657,8 +29246,12 @@ declare var onoffline: ((this: Window, ev: Event) => any) | null;
28657
29246
  declare var ononline: ((this: Window, ev: Event) => any) | null;
28658
29247
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/pagehide_event) */
28659
29248
  declare var onpagehide: ((this: Window, ev: PageTransitionEvent) => any) | null;
29249
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/pagereveal_event) */
29250
+ declare var onpagereveal: ((this: Window, ev: Event) => any) | null;
28660
29251
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/pageshow_event) */
28661
29252
  declare var onpageshow: ((this: Window, ev: PageTransitionEvent) => any) | null;
29253
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/pageswap_event) */
29254
+ declare var onpageswap: ((this: Window, ev: Event) => any) | null;
28662
29255
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/popstate_event) */
28663
29256
  declare var onpopstate: ((this: Window, ev: PopStateEvent) => any) | null;
28664
29257
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/rejectionhandled_event) */
@@ -28697,24 +29290,24 @@ declare var performance: Performance;
28697
29290
  declare function atob(data: string): string;
28698
29291
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/btoa) */
28699
29292
  declare function btoa(data: string): string;
28700
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/clearInterval) */
29293
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/clearInterval) */
28701
29294
  declare function clearInterval(id: number | undefined): void;
28702
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/clearTimeout) */
29295
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/clearTimeout) */
28703
29296
  declare function clearTimeout(id: number | undefined): void;
28704
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/createImageBitmap) */
29297
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/createImageBitmap) */
28705
29298
  declare function createImageBitmap(image: ImageBitmapSource, options?: ImageBitmapOptions): Promise<ImageBitmap>;
28706
29299
  declare function createImageBitmap(image: ImageBitmapSource, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise<ImageBitmap>;
28707
29300
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch) */
28708
29301
  declare function fetch(input: RequestInfo | URL, init?: RequestInit): Promise<Response>;
28709
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/queueMicrotask) */
29302
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/queueMicrotask) */
28710
29303
  declare function queueMicrotask(callback: VoidFunction): void;
28711
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/reportError) */
29304
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/reportError) */
28712
29305
  declare function reportError(e: any): void;
28713
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/setInterval) */
29306
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/setInterval) */
28714
29307
  declare function setInterval(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;
28715
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/setTimeout) */
29308
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/setTimeout) */
28716
29309
  declare function setTimeout(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;
28717
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/structuredClone) */
29310
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/structuredClone) */
28718
29311
  declare function structuredClone<T = any>(value: T, options?: StructuredSerializeOptions): T;
28719
29312
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/sessionStorage) */
28720
29313
  declare var sessionStorage: Storage;
@@ -28768,6 +29361,7 @@ type HashAlgorithmIdentifier = AlgorithmIdentifier;
28768
29361
  type HeadersInit = [string, string][] | Record<string, string> | Headers;
28769
29362
  type IDBValidKey = number | string | Date | BufferSource | IDBValidKey[];
28770
29363
  type ImageBitmapSource = CanvasImageSource | Blob | ImageData;
29364
+ type ImageBufferSource = AllowSharedBufferSource | ReadableStream;
28771
29365
  type Int32List = Int32Array | GLint[];
28772
29366
  type LineAndPositionSetting = number | AutoKeyword;
28773
29367
  type MediaProvider = MediaStream | MediaSource | Blob;
@@ -28780,6 +29374,7 @@ type OnErrorEventHandler = OnErrorEventHandlerNonNull | null;
28780
29374
  type OptionalPostfixToken<T extends string> = ` ${T}` | "";
28781
29375
  type OptionalPrefixToken<T extends string> = `${T} ` | "";
28782
29376
  type PerformanceEntryList = PerformanceEntry[];
29377
+ type PublicKeyCredentialClientCapabilities = Record<string, boolean>;
28783
29378
  type PublicKeyCredentialJSON = any;
28784
29379
  type RTCRtpTransform = RTCRtpScriptTransform;
28785
29380
  type ReadableStreamController<T> = ReadableStreamDefaultController<T> | ReadableByteStreamController;
@@ -28790,7 +29385,7 @@ type ReportList = Report[];
28790
29385
  type RequestInfo = Request | string;
28791
29386
  type TexImageSource = ImageBitmap | ImageData | HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | OffscreenCanvas | VideoFrame;
28792
29387
  type TimerHandler = string | Function;
28793
- type Transferable = OffscreenCanvas | ImageBitmap | MessagePort | MediaSourceHandle | ReadableStream | WritableStream | TransformStream | AudioData | VideoFrame | ArrayBuffer;
29388
+ type Transferable = OffscreenCanvas | ImageBitmap | MessagePort | MediaSourceHandle | ReadableStream | WritableStream | TransformStream | AudioData | VideoFrame | RTCDataChannel | ArrayBuffer;
28794
29389
  type Uint32List = Uint32Array | GLuint[];
28795
29390
  type VibratePattern = number | number[];
28796
29391
  type WindowProxy = Window;
@@ -28893,6 +29488,7 @@ type MediaSessionAction = "nexttrack" | "pause" | "play" | "previoustrack" | "se
28893
29488
  type MediaSessionPlaybackState = "none" | "paused" | "playing";
28894
29489
  type MediaStreamTrackState = "ended" | "live";
28895
29490
  type NavigationTimingType = "back_forward" | "navigate" | "prerender" | "reload";
29491
+ type NavigationType = "push" | "reload" | "replace" | "traverse";
28896
29492
  type NotificationDirection = "auto" | "ltr" | "rtl";
28897
29493
  type NotificationPermission = "default" | "denied" | "granted";
28898
29494
  type OffscreenRenderingContextId = "2d" | "bitmaprenderer" | "webgl" | "webgl2" | "webgpu";
@@ -28903,7 +29499,7 @@ type OverSampleType = "2x" | "4x" | "none";
28903
29499
  type PanningModelType = "HRTF" | "equalpower";
28904
29500
  type PaymentComplete = "fail" | "success" | "unknown";
28905
29501
  type PaymentShippingType = "delivery" | "pickup" | "shipping";
28906
- type PermissionName = "geolocation" | "midi" | "notifications" | "persistent-storage" | "push" | "screen-wake-lock" | "storage-access";
29502
+ type PermissionName = "camera" | "geolocation" | "microphone" | "midi" | "notifications" | "persistent-storage" | "push" | "screen-wake-lock" | "storage-access";
28907
29503
  type PermissionState = "denied" | "granted" | "prompt";
28908
29504
  type PlaybackDirection = "alternate" | "alternate-reverse" | "normal" | "reverse";
28909
29505
  type PositionAlignSetting = "auto" | "center" | "line-left" | "line-right";
@@ -28915,6 +29511,7 @@ type PushEncryptionKeyName = "auth" | "p256dh";
28915
29511
  type RTCBundlePolicy = "balanced" | "max-bundle" | "max-compat";
28916
29512
  type RTCDataChannelState = "closed" | "closing" | "connecting" | "open";
28917
29513
  type RTCDegradationPreference = "balanced" | "maintain-framerate" | "maintain-resolution";
29514
+ type RTCDtlsRole = "client" | "server" | "unknown";
28918
29515
  type RTCDtlsTransportState = "closed" | "connected" | "connecting" | "failed" | "new";
28919
29516
  type RTCEncodedVideoFrameType = "delta" | "empty" | "key";
28920
29517
  type RTCErrorDetailType = "data-channel-failure" | "dtls-failure" | "fingerprint-failure" | "hardware-encoder-error" | "hardware-encoder-not-available" | "sctp-failure" | "sdp-syntax-error";
@@ -28924,11 +29521,13 @@ type RTCIceConnectionState = "checking" | "closed" | "completed" | "connected" |
28924
29521
  type RTCIceGathererState = "complete" | "gathering" | "new";
28925
29522
  type RTCIceGatheringState = "complete" | "gathering" | "new";
28926
29523
  type RTCIceProtocol = "tcp" | "udp";
29524
+ type RTCIceRole = "controlled" | "controlling" | "unknown";
28927
29525
  type RTCIceTcpCandidateType = "active" | "passive" | "so";
28928
29526
  type RTCIceTransportPolicy = "all" | "relay";
28929
29527
  type RTCIceTransportState = "checking" | "closed" | "completed" | "connected" | "disconnected" | "failed" | "new";
28930
29528
  type RTCPeerConnectionState = "closed" | "connected" | "connecting" | "disconnected" | "failed" | "new";
28931
29529
  type RTCPriorityType = "high" | "low" | "medium" | "very-low";
29530
+ type RTCQualityLimitationReason = "bandwidth" | "cpu" | "none" | "other";
28932
29531
  type RTCRtcpMuxPolicy = "require";
28933
29532
  type RTCRtpTransceiverDirection = "inactive" | "recvonly" | "sendonly" | "sendrecv" | "stopped";
28934
29533
  type RTCSctpTransportState = "closed" | "connected" | "connecting";