@@ -3425,7 +3425,7 @@ interface CanvasRect {
3425
3425
}
3426
3426
3427
3427
/** 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 {
3429
3429
readonly canvas: HTMLCanvasElement;
3430
3430
}
3431
3431
@@ -3507,7 +3507,7 @@ declare var ChannelSplitterNode: {
3507
3507
};
3508
3508
3509
3509
/** 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 {
3511
3511
data: string;
3512
3512
readonly length: number;
3513
3513
appendData(data: string): void;
@@ -4449,7 +4449,7 @@ interface DocumentEventMap extends GlobalEventHandlersEventMap, DocumentAndEleme
4449
4449
}
4450
4450
4451
4451
/** 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 {
4453
4453
/**
4454
4454
* Sets or gets the URL for the current document.
4455
4455
*/
@@ -5140,7 +5140,7 @@ interface ElementEventMap {
5140
5140
}
5141
5141
5142
5142
/** 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. */
5143
- interface Element extends Node, ParentNode, NonDocumentTypeChildNode, ChildNode, Slotable, InnerHTML, Animatable {
5143
+ interface Element extends Node, Animatable, ChildNode, InnerHTML, NonDocumentTypeChildNode, ParentNode, Slotable {
5144
5144
readonly assignedSlot: HTMLSlotElement | null;
5145
5145
readonly attributes: NamedNodeMap;
5146
5146
/**
@@ -6635,7 +6635,7 @@ interface HTMLElementEventMap extends ElementEventMap, GlobalEventHandlersEventM
6635
6635
}
6636
6636
6637
6637
/** Any HTML element. Some elements directly implement this interface, while others implement it via an interface that inherits it. */
6638
- interface HTMLElement extends Element, GlobalEventHandlers, DocumentAndElementEventHandlers , ElementContentEditable, HTMLOrSVGElement, ElementCSSInlineStyle {
6638
+ interface HTMLElement extends Element, DocumentAndElementEventHandlers, ElementCSSInlineStyle , ElementContentEditable, GlobalEventHandlers, HTMLOrSVGElement {
6639
6639
accessKey: string;
6640
6640
readonly accessKeyLabel: string;
6641
6641
autocapitalize: string;
@@ -10817,7 +10817,7 @@ declare var NavigationPreloadManager: {
10817
10817
};
10818
10818
10819
10819
/** The state and the identity of the user agent. It allows scripts to query it and to register themselves to carry on some activities. */
10820
- interface Navigator extends NavigatorID, NavigatorLanguage, NavigatorOnLine, NavigatorContentUtils, NavigatorCookies, NavigatorPlugins, NavigatorConcurrentHardware, NavigatorStorage, NavigatorAutomationInformation, MSFileSaver, MSNavigatorDoNotTrack, NavigatorBeacon {
10820
+ interface Navigator extends MSFileSaver, MSNavigatorDoNotTrack, NavigatorAutomationInformation, NavigatorBeacon, NavigatorConcurrentHardware, NavigatorContentUtils, NavigatorCookies, NavigatorID, NavigatorLanguage, NavigatorOnLine, NavigatorPlugins, NavigatorStorage {
10821
10821
readonly activeVRDisplays: ReadonlyArray<VRDisplay>;
10822
10822
readonly clipboard: Clipboard;
10823
10823
readonly credentials: CredentialsContainer;
@@ -11356,7 +11356,7 @@ declare var OffscreenCanvas: {
11356
11356
new(width: number, height: number): OffscreenCanvas;
11357
11357
};
11358
11358
11359
- interface OffscreenCanvasRenderingContext2D extends CanvasState, CanvasTransform, CanvasCompositing, CanvasImageSmoothing, CanvasFillStrokeStyles, CanvasShadowStyles, CanvasFilters, CanvasRect, CanvasDrawPath, CanvasText, CanvasDrawImage, CanvasImageData, CanvasPathDrawingStyles , CanvasTextDrawingStyles, CanvasPath {
11359
+ interface OffscreenCanvasRenderingContext2D extends CanvasCompositing, CanvasDrawImage, CanvasDrawPath, CanvasFillStrokeStyles, CanvasFilters, CanvasImageData, CanvasImageSmoothing, CanvasPath, CanvasPathDrawingStyles, CanvasRect, CanvasShadowStyles, CanvasState, CanvasText , CanvasTextDrawingStyles, CanvasTransform {
11360
11360
readonly canvas: OffscreenCanvas;
11361
11361
commit(): void;
11362
11362
}
@@ -13113,7 +13113,7 @@ interface SVGElementEventMap extends ElementEventMap, GlobalEventHandlersEventMa
13113
13113
}
13114
13114
13115
13115
/** All of the SVG DOM interfaces that correspond directly to elements in the SVG language derive from the SVGElement interface. */
13116
- interface SVGElement extends Element, GlobalEventHandlers, DocumentAndElementEventHandlers, SVGElementInstance , HTMLOrSVGElement, ElementCSSInlineStyle {
13116
+ interface SVGElement extends Element, DocumentAndElementEventHandlers, ElementCSSInlineStyle, GlobalEventHandlers , HTMLOrSVGElement, SVGElementInstance {
13117
13117
/** @deprecated */
13118
13118
readonly className: any;
13119
13119
readonly ownerSVGElement: SVGSVGElement | null;
@@ -14323,7 +14323,7 @@ declare var SVGPathSegMovetoRel: {
14323
14323
};
14324
14324
14325
14325
/** Corresponds to the <pattern> element. */
14326
- interface SVGPatternElement extends SVGElement, SVGTests, SVGFitToViewBox , SVGURIReference {
14326
+ interface SVGPatternElement extends SVGElement, SVGFitToViewBox, SVGTests , SVGURIReference {
14327
14327
readonly height: SVGAnimatedLength;
14328
14328
readonly patternContentUnits: SVGAnimatedEnumeration;
14329
14329
readonly patternTransform: SVGAnimatedTransformList;
@@ -15624,7 +15624,7 @@ interface TextDecoderCommon {
15624
15624
readonly ignoreBOM: boolean;
15625
15625
}
15626
15626
15627
- interface TextDecoderStream extends TextDecoderCommon, GenericTransformStream {
15627
+ interface TextDecoderStream extends GenericTransformStream, TextDecoderCommon {
15628
15628
}
15629
15629
15630
15630
declare var TextDecoderStream: {
@@ -15656,7 +15656,7 @@ interface TextEncoderCommon {
15656
15656
readonly encoding: string;
15657
15657
}
15658
15658
15659
- interface TextEncoderStream extends TextEncoderCommon, GenericTransformStream {
15659
+ interface TextEncoderStream extends GenericTransformStream, TextEncoderCommon {
15660
15660
}
15661
15661
15662
15662
declare var TextEncoderStream: {
@@ -16424,7 +16424,7 @@ declare var WebAuthnAssertion: {
16424
16424
new(): WebAuthnAssertion;
16425
16425
};
16426
16426
16427
- interface WebGL2RenderingContext extends WebGLRenderingContextBase, WebGL2RenderingContextBase, WebGL2RenderingContextOverloads {
16427
+ interface WebGL2RenderingContext extends WebGL2RenderingContextBase, WebGL2RenderingContextOverloads, WebGLRenderingContextBase {
16428
16428
}
16429
16429
16430
16430
declare var WebGL2RenderingContext: {
@@ -18477,7 +18477,7 @@ interface WindowEventMap extends GlobalEventHandlersEventMap, WindowEventHandler
18477
18477
}
18478
18478
18479
18479
/** A window containing a DOM document; the document property points to the DOM document loaded in that window. */
18480
- interface Window extends EventTarget, WindowTimers, WindowSessionStorage, WindowLocalStorage, WindowConsole, GlobalEventHandlers, IDBEnvironment, WindowBase64, AnimationFrameProvider, WindowOrWorkerGlobalScope, WindowEventHandlers {
18480
+ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandlers, IDBEnvironment, WindowBase64, WindowConsole, WindowEventHandlers, WindowLocalStorage, WindowOrWorkerGlobalScope, WindowSessionStorage, WindowTimers {
18481
18481
Blob: typeof Blob;
18482
18482
TextDecoder: typeof TextDecoder;
18483
18483
TextEncoder: typeof TextEncoder;
0 commit comments