@@ -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
*/
@@ -5142,7 +5142,7 @@ interface ElementEventMap {
5142
5142
}
5143
5143
5144
5144
/** 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 {
5146
5146
readonly assignedSlot: HTMLSlotElement | null;
5147
5147
readonly attributes: NamedNodeMap;
5148
5148
/**
@@ -6641,7 +6641,7 @@ interface HTMLElementEventMap extends ElementEventMap, GlobalEventHandlersEventM
6641
6641
}
6642
6642
6643
6643
/** 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 {
6645
6645
accessKey: string;
6646
6646
readonly accessKeyLabel: string;
6647
6647
autocapitalize: string;
@@ -10811,7 +10811,7 @@ declare var NavigationPreloadManager: {
10811
10811
};
10812
10812
10813
10813
/** 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 {
10815
10815
readonly activeVRDisplays: ReadonlyArray<VRDisplay>;
10816
10816
readonly authentication: WebAuthentication;
10817
10817
readonly clipboard: Clipboard;
@@ -11352,7 +11352,7 @@ declare var OffscreenCanvas: {
11352
11352
new(width: number, height: number): OffscreenCanvas;
11353
11353
};
11354
11354
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 {
11356
11356
readonly canvas: OffscreenCanvas;
11357
11357
commit(): void;
11358
11358
}
@@ -13094,7 +13094,7 @@ interface SVGElementEventMap extends ElementEventMap, GlobalEventHandlersEventMa
13094
13094
}
13095
13095
13096
13096
/** 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 {
13098
13098
/** @deprecated */
13099
13099
readonly className: any;
13100
13100
readonly ownerSVGElement: SVGSVGElement | null;
@@ -14304,7 +14304,7 @@ declare var SVGPathSegMovetoRel: {
14304
14304
};
14305
14305
14306
14306
/** Corresponds to the <pattern> element. */
14307
- interface SVGPatternElement extends SVGElement, SVGTests, SVGFitToViewBox , SVGURIReference {
14307
+ interface SVGPatternElement extends SVGElement, SVGFitToViewBox, SVGTests , SVGURIReference {
14308
14308
readonly height: SVGAnimatedLength;
14309
14309
readonly patternContentUnits: SVGAnimatedEnumeration;
14310
14310
readonly patternTransform: SVGAnimatedTransformList;
@@ -15605,7 +15605,7 @@ interface TextDecoderCommon {
15605
15605
readonly ignoreBOM: boolean;
15606
15606
}
15607
15607
15608
- interface TextDecoderStream extends TextDecoderCommon, GenericTransformStream {
15608
+ interface TextDecoderStream extends GenericTransformStream, TextDecoderCommon {
15609
15609
}
15610
15610
15611
15611
declare var TextDecoderStream: {
@@ -15637,7 +15637,7 @@ interface TextEncoderCommon {
15637
15637
readonly encoding: string;
15638
15638
}
15639
15639
15640
- interface TextEncoderStream extends TextEncoderCommon, GenericTransformStream {
15640
+ interface TextEncoderStream extends GenericTransformStream, TextEncoderCommon {
15641
15641
}
15642
15642
15643
15643
declare var TextEncoderStream: {
@@ -16405,7 +16405,7 @@ declare var WebAuthnAssertion: {
16405
16405
new(): WebAuthnAssertion;
16406
16406
};
16407
16407
16408
- interface WebGL2RenderingContext extends WebGLRenderingContextBase, WebGL2RenderingContextBase, WebGL2RenderingContextOverloads {
16408
+ interface WebGL2RenderingContext extends WebGL2RenderingContextBase, WebGL2RenderingContextOverloads, WebGLRenderingContextBase {
16409
16409
}
16410
16410
16411
16411
declare var WebGL2RenderingContext: {
@@ -18458,7 +18458,7 @@ interface WindowEventMap extends GlobalEventHandlersEventMap, WindowEventHandler
18458
18458
}
18459
18459
18460
18460
/** 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 {
18462
18462
Blob: typeof Blob;
18463
18463
TextDecoder: typeof TextDecoder;
18464
18464
TextEncoder: typeof TextEncoder;
0 commit comments