@@ -3425,7 +3425,7 @@ interface CanvasRect {
34253425}
34263426
34273427/** The CanvasRenderingContext2D interface, part of the Canvas API, provides the 2D rendering context for the drawing surface of a <canvas> element. It is used for drawing shapes, text, images, and other objects. */
3428- interface CanvasRenderingContext2D extends CanvasState, CanvasTransform, CanvasCompositing, CanvasImageSmoothing, CanvasFillStrokeStyles, CanvasShadowStyles, CanvasFilters, CanvasRect, CanvasDrawPath, CanvasUserInterface, CanvasText, CanvasDrawImage, CanvasImageData, CanvasPathDrawingStyles , CanvasTextDrawingStyles, CanvasPath {
3428+ interface CanvasRenderingContext2D extends CanvasCompositing, CanvasDrawImage, CanvasDrawPath, CanvasFillStrokeStyles, CanvasFilters, CanvasImageData, CanvasImageSmoothing, CanvasPath, CanvasPathDrawingStyles, CanvasRect, CanvasShadowStyles, CanvasState, CanvasText , CanvasTextDrawingStyles, CanvasTransform, CanvasUserInterface {
34293429 readonly canvas: HTMLCanvasElement;
34303430}
34313431
@@ -3507,7 +3507,7 @@ declare var ChannelSplitterNode: {
35073507};
35083508
35093509/** The CharacterData abstract interface represents a Node object that contains characters. This is an abstract interface, meaning there aren't any object of type CharacterData: it is implemented by other interfaces, like Text, Comment, or ProcessingInstruction which aren't abstract. */
3510- interface CharacterData extends Node, NonDocumentTypeChildNode, ChildNode {
3510+ interface CharacterData extends Node, ChildNode, NonDocumentTypeChildNode {
35113511 data: string;
35123512 readonly length: number;
35133513 appendData(data: string): void;
@@ -4449,7 +4449,7 @@ interface DocumentEventMap extends GlobalEventHandlersEventMap, DocumentAndEleme
44494449}
44504450
44514451/** Any web page loaded in the browser and serves as an entry point into the web page's content, which is the DOM tree. */
4452- interface Document extends Node, NonElementParentNode , DocumentOrShadowRoot, ParentNode, XPathEvaluatorBase, GlobalEventHandlers, DocumentAndElementEventHandlers {
4452+ interface Document extends Node, DocumentAndElementEventHandlers , DocumentOrShadowRoot, GlobalEventHandlers, NonElementParentNode, ParentNode, XPathEvaluatorBase {
44534453 /**
44544454 * Sets or gets the URL for the current document.
44554455 */
@@ -5142,7 +5142,7 @@ interface ElementEventMap {
51425142}
51435143
51445144/** Element is the most general base class from which all objects in a Document inherit. It only has methods and properties common to all kinds of elements. More specific classes inherit from Element. */
5145- interface Element extends Node, ParentNode, NonDocumentTypeChildNode, ChildNode, Slotable, InnerHTML, Animatable {
5145+ interface Element extends Node, Animatable, ChildNode, InnerHTML, NonDocumentTypeChildNode, ParentNode, Slotable {
51465146 readonly assignedSlot: HTMLSlotElement | null;
51475147 readonly attributes: NamedNodeMap;
51485148 /**
@@ -6641,7 +6641,7 @@ interface HTMLElementEventMap extends ElementEventMap, GlobalEventHandlersEventM
66416641}
66426642
66436643/** Any HTML element. Some elements directly implement this interface, while others implement it via an interface that inherits it. */
6644- interface HTMLElement extends Element, GlobalEventHandlers, DocumentAndElementEventHandlers , ElementContentEditable, HTMLOrSVGElement, ElementCSSInlineStyle {
6644+ interface HTMLElement extends Element, DocumentAndElementEventHandlers, ElementCSSInlineStyle , ElementContentEditable, GlobalEventHandlers, HTMLOrSVGElement {
66456645 accessKey: string;
66466646 readonly accessKeyLabel: string;
66476647 autocapitalize: string;
@@ -10811,7 +10811,7 @@ declare var NavigationPreloadManager: {
1081110811};
1081210812
1081310813/** The state and the identity of the user agent. It allows scripts to query it and to register themselves to carry on some activities. */
10814- interface Navigator extends NavigatorID, NavigatorOnLine, NavigatorContentUtils, NavigatorStorageUtils, MSNavigatorDoNotTrack, MSFileSaver, NavigatorBeacon, NavigatorConcurrentHardware, NavigatorUserMedia, NavigatorLanguage, NavigatorStorage, NavigatorAutomationInformation {
10814+ interface Navigator extends MSFileSaver, MSNavigatorDoNotTrack, NavigatorAutomationInformation, NavigatorBeacon, NavigatorConcurrentHardware, NavigatorContentUtils, NavigatorID, NavigatorLanguage, NavigatorOnLine, NavigatorStorage, NavigatorStorageUtils, NavigatorUserMedia {
1081510815 readonly activeVRDisplays: ReadonlyArray<VRDisplay>;
1081610816 readonly authentication: WebAuthentication;
1081710817 readonly clipboard: Clipboard;
@@ -11352,7 +11352,7 @@ declare var OffscreenCanvas: {
1135211352 new(width: number, height: number): OffscreenCanvas;
1135311353};
1135411354
11355- interface OffscreenCanvasRenderingContext2D extends CanvasState, CanvasTransform, CanvasCompositing, CanvasImageSmoothing, CanvasFillStrokeStyles, CanvasShadowStyles, CanvasFilters, CanvasRect, CanvasDrawPath, CanvasText, CanvasDrawImage, CanvasImageData, CanvasPathDrawingStyles , CanvasTextDrawingStyles, CanvasPath {
11355+ interface OffscreenCanvasRenderingContext2D extends CanvasCompositing, CanvasDrawImage, CanvasDrawPath, CanvasFillStrokeStyles, CanvasFilters, CanvasImageData, CanvasImageSmoothing, CanvasPath, CanvasPathDrawingStyles, CanvasRect, CanvasShadowStyles, CanvasState, CanvasText , CanvasTextDrawingStyles, CanvasTransform {
1135611356 readonly canvas: OffscreenCanvas;
1135711357 commit(): void;
1135811358}
@@ -13094,7 +13094,7 @@ interface SVGElementEventMap extends ElementEventMap, GlobalEventHandlersEventMa
1309413094}
1309513095
1309613096/** All of the SVG DOM interfaces that correspond directly to elements in the SVG language derive from the SVGElement interface. */
13097- interface SVGElement extends Element, GlobalEventHandlers, DocumentAndElementEventHandlers, SVGElementInstance , HTMLOrSVGElement, ElementCSSInlineStyle {
13097+ interface SVGElement extends Element, DocumentAndElementEventHandlers, ElementCSSInlineStyle, GlobalEventHandlers , HTMLOrSVGElement, SVGElementInstance {
1309813098 /** @deprecated */
1309913099 readonly className: any;
1310013100 readonly ownerSVGElement: SVGSVGElement | null;
@@ -14304,7 +14304,7 @@ declare var SVGPathSegMovetoRel: {
1430414304};
1430514305
1430614306/** Corresponds to the <pattern> element. */
14307- interface SVGPatternElement extends SVGElement, SVGTests, SVGFitToViewBox , SVGURIReference {
14307+ interface SVGPatternElement extends SVGElement, SVGFitToViewBox, SVGTests , SVGURIReference {
1430814308 readonly height: SVGAnimatedLength;
1430914309 readonly patternContentUnits: SVGAnimatedEnumeration;
1431014310 readonly patternTransform: SVGAnimatedTransformList;
@@ -15605,7 +15605,7 @@ interface TextDecoderCommon {
1560515605 readonly ignoreBOM: boolean;
1560615606}
1560715607
15608- interface TextDecoderStream extends TextDecoderCommon, GenericTransformStream {
15608+ interface TextDecoderStream extends GenericTransformStream, TextDecoderCommon {
1560915609}
1561015610
1561115611declare var TextDecoderStream: {
@@ -15637,7 +15637,7 @@ interface TextEncoderCommon {
1563715637 readonly encoding: string;
1563815638}
1563915639
15640- interface TextEncoderStream extends TextEncoderCommon, GenericTransformStream {
15640+ interface TextEncoderStream extends GenericTransformStream, TextEncoderCommon {
1564115641}
1564215642
1564315643declare var TextEncoderStream: {
@@ -16405,7 +16405,7 @@ declare var WebAuthnAssertion: {
1640516405 new(): WebAuthnAssertion;
1640616406};
1640716407
16408- interface WebGL2RenderingContext extends WebGLRenderingContextBase, WebGL2RenderingContextBase, WebGL2RenderingContextOverloads {
16408+ interface WebGL2RenderingContext extends WebGL2RenderingContextBase, WebGL2RenderingContextOverloads, WebGLRenderingContextBase {
1640916409}
1641016410
1641116411declare var WebGL2RenderingContext: {
@@ -18458,7 +18458,7 @@ interface WindowEventMap extends GlobalEventHandlersEventMap, WindowEventHandler
1845818458}
1845918459
1846018460/** A window containing a DOM document; the document property points to the DOM document loaded in that window. */
18461- interface Window extends EventTarget, WindowTimers, WindowSessionStorage, WindowLocalStorage, WindowConsole, GlobalEventHandlers, IDBEnvironment, WindowBase64, AnimationFrameProvider, WindowOrWorkerGlobalScope, WindowEventHandlers {
18461+ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandlers, IDBEnvironment, WindowBase64, WindowConsole, WindowEventHandlers, WindowLocalStorage, WindowOrWorkerGlobalScope, WindowSessionStorage, WindowTimers {
1846218462 Blob: typeof Blob;
1846318463 TextDecoder: typeof TextDecoder;
1846418464 TextEncoder: typeof TextEncoder;
0 commit comments