@@ -3209,7 +3209,9 @@ declare var CSSConditionRule: {
32093209
32103210/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSContainerRule) */
32113211interface CSSContainerRule extends CSSConditionRule {
3212+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSContainerRule/containerName) */
32123213 readonly containerName: string;
3214+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSContainerRule/containerQuery) */
32133215 readonly containerQuery: string;
32143216}
32153217
@@ -3260,7 +3262,9 @@ declare var CSSFontFaceRule: {
32603262 new(): CSSFontFaceRule;
32613263};
32623264
3265+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFeatureValuesRule) */
32633266interface CSSFontFeatureValuesRule extends CSSRule {
3267+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFeatureValuesRule/fontFamily) */
32643268 fontFamily: string;
32653269}
32663270
@@ -3383,7 +3387,9 @@ declare var CSSKeywordValue: {
33833387 new(value: string): CSSKeywordValue;
33843388};
33853389
3390+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSLayerBlockRule) */
33863391interface CSSLayerBlockRule extends CSSGroupingRule {
3392+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSLayerBlockRule/name) */
33873393 readonly name: string;
33883394}
33893395
@@ -3392,7 +3398,9 @@ declare var CSSLayerBlockRule: {
33923398 new(): CSSLayerBlockRule;
33933399};
33943400
3401+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSLayerStatementRule) */
33953402interface CSSLayerStatementRule extends CSSRule {
3403+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSLayerStatementRule/nameList) */
33963404 readonly nameList: ReadonlyArray<string>;
33973405}
33983406
@@ -5804,13 +5812,13 @@ declare var Crypto: {
58045812 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey)
58055813 */
58065814interface CryptoKey {
5807- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey) */
5815+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey/algorithm ) */
58085816 readonly algorithm: KeyAlgorithm;
5809- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey) */
5817+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey/extractable ) */
58105818 readonly extractable: boolean;
5811- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey) */
5819+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey/type ) */
58125820 readonly type: KeyType;
5813- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey) */
5821+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey/usages ) */
58145822 readonly usages: KeyUsage[];
58155823}
58165824
@@ -14718,6 +14726,7 @@ interface MediaDeviceInfo {
1471814726 readonly kind: MediaDeviceKind;
1471914727 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaDeviceInfo/label) */
1472014728 readonly label: string;
14729+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaDeviceInfo/toJSON) */
1472114730 toJSON(): any;
1472214731}
1472314732
@@ -16824,6 +16833,7 @@ interface PaymentResponse extends EventTarget {
1682416833 complete(result?: PaymentComplete): Promise<void>;
1682516834 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/retry) */
1682616835 retry(errorFields?: PaymentValidationErrors): Promise<void>;
16836+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PaymentResponse/toJSON) */
1682716837 toJSON(): any;
1682816838}
1682916839
@@ -17283,7 +17293,11 @@ interface PerformanceTiming {
1728317293 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/unloadEventStart)
1728417294 */
1728517295 readonly unloadEventStart: number;
17286- /** @deprecated */
17296+ /**
17297+ * @deprecated
17298+ *
17299+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PerformanceTiming/toJSON)
17300+ */
1728717301 toJSON(): any;
1728817302}
1728917303
@@ -19032,7 +19046,9 @@ declare var SVGCircleElement: {
1903219046 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGClipPathElement)
1903319047 */
1903419048interface SVGClipPathElement extends SVGElement {
19049+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGClipPathElement/clipPathUnits) */
1903519050 readonly clipPathUnits: SVGAnimatedEnumeration;
19051+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGClipPathElement/transform) */
1903619052 readonly transform: SVGAnimatedTransformList;
1903719053 addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGClipPathElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
1903819054 addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -20103,11 +20119,17 @@ declare var SVGMarkerElement: {
2010320119 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMaskElement)
2010420120 */
2010520121interface SVGMaskElement extends SVGElement {
20122+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMaskElement/height) */
2010620123 readonly height: SVGAnimatedLength;
20124+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMaskElement/maskContentUnits) */
2010720125 readonly maskContentUnits: SVGAnimatedEnumeration;
20126+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMaskElement/maskUnits) */
2010820127 readonly maskUnits: SVGAnimatedEnumeration;
20128+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMaskElement/width) */
2010920129 readonly width: SVGAnimatedLength;
20130+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMaskElement/x) */
2011020131 readonly x: SVGAnimatedLength;
20132+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGMaskElement/y) */
2011120133 readonly y: SVGAnimatedLength;
2011220134 addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGMaskElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
2011320135 addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@@ -21020,6 +21042,7 @@ interface ServiceWorker extends EventTarget, AbstractWorker {
2102021042 readonly scriptURL: string;
2102121043 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorker/state) */
2102221044 readonly state: ServiceWorkerState;
21045+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorker/postMessage) */
2102321046 postMessage(message: any, transfer: Transferable[]): void;
2102421047 postMessage(message: any, options?: StructuredSerializeOptions): void;
2102521048 addEventListener<K extends keyof ServiceWorkerEventMap>(type: K, listener: (this: ServiceWorker, ev: ServiceWorkerEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -25509,7 +25532,11 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
2550925532 blur(): void;
2551025533 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/cancelIdleCallback) */
2551125534 cancelIdleCallback(handle: number): void;
25512- /** @deprecated */
25535+ /**
25536+ * @deprecated
25537+ *
25538+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/captureEvents)
25539+ */
2551325540 captureEvents(): void;
2551425541 /**
2551525542 * Closes the window.
@@ -26727,6 +26754,7 @@ interface HTMLElementTagNameMap {
2672726754 "s": HTMLElement;
2672826755 "samp": HTMLElement;
2672926756 "script": HTMLScriptElement;
26757+ "search": HTMLElement;
2673026758 "section": HTMLElement;
2673126759 "select": HTMLSelectElement;
2673226760 "slot": HTMLSlotElement;
@@ -27075,7 +27103,11 @@ declare function alert(message?: any): void;
2707527103declare function blur(): void;
2707627104/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/cancelIdleCallback) */
2707727105declare function cancelIdleCallback(handle: number): void;
27078- /** @deprecated */
27106+ /**
27107+ * @deprecated
27108+ *
27109+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/captureEvents)
27110+ */
2707927111declare function captureEvents(): void;
2708027112/**
2708127113 * Closes the window.
0 commit comments