@@ -3460,7 +3460,7 @@ interface CanvasRect {
3460
3460
}
3461
3461
3462
3462
/** 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. */
3463
- interface CanvasRenderingContext2D extends CanvasState, CanvasTransform, CanvasCompositing, CanvasImageSmoothing, CanvasFillStrokeStyles, CanvasShadowStyles, CanvasFilters, CanvasRect, CanvasDrawPath, CanvasUserInterface, CanvasText, CanvasDrawImage, CanvasImageData, CanvasPathDrawingStyles , CanvasTextDrawingStyles, CanvasPath {
3463
+ interface CanvasRenderingContext2D extends CanvasCompositing, CanvasDrawImage, CanvasDrawPath, CanvasFillStrokeStyles, CanvasFilters, CanvasImageData, CanvasImageSmoothing, CanvasPath, CanvasPathDrawingStyles, CanvasRect, CanvasShadowStyles, CanvasState, CanvasText , CanvasTextDrawingStyles, CanvasTransform, CanvasUserInterface {
3464
3464
readonly canvas: HTMLCanvasElement;
3465
3465
}
3466
3466
@@ -3542,7 +3542,7 @@ declare var ChannelSplitterNode: {
3542
3542
};
3543
3543
3544
3544
/** 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. */
3545
- interface CharacterData extends Node, NonDocumentTypeChildNode, ChildNode {
3545
+ interface CharacterData extends Node, ChildNode, NonDocumentTypeChildNode {
3546
3546
data: string;
3547
3547
readonly length: number;
3548
3548
appendData(data: string): void;
@@ -4484,7 +4484,7 @@ interface DocumentEventMap extends GlobalEventHandlersEventMap, DocumentAndEleme
4484
4484
}
4485
4485
4486
4486
/** Any web page loaded in the browser and serves as an entry point into the web page's content, which is the DOM tree. */
4487
- interface Document extends Node, NonElementParentNode , DocumentOrShadowRoot, ParentNode, XPathEvaluatorBase, GlobalEventHandlers, DocumentAndElementEventHandlers {
4487
+ interface Document extends Node, DocumentAndElementEventHandlers , DocumentOrShadowRoot, GlobalEventHandlers, NonElementParentNode, ParentNode, XPathEvaluatorBase {
4488
4488
/**
4489
4489
* Sets or gets the URL for the current document.
4490
4490
*/
@@ -5175,7 +5175,7 @@ interface ElementEventMap {
5175
5175
}
5176
5176
5177
5177
/** 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. */
5178
- interface Element extends Node, ParentNode, NonDocumentTypeChildNode, ChildNode, Slotable, InnerHTML, Animatable {
5178
+ interface Element extends Node, Animatable, ChildNode, InnerHTML, NonDocumentTypeChildNode, ParentNode, Slotable {
5179
5179
readonly assignedSlot: HTMLSlotElement | null;
5180
5180
readonly attributes: NamedNodeMap;
5181
5181
/**
@@ -6670,7 +6670,7 @@ interface HTMLElementEventMap extends ElementEventMap, GlobalEventHandlersEventM
6670
6670
}
6671
6671
6672
6672
/** Any HTML element. Some elements directly implement this interface, while others implement it via an interface that inherits it. */
6673
- interface HTMLElement extends Element, GlobalEventHandlers, DocumentAndElementEventHandlers , ElementContentEditable, HTMLOrSVGElement, ElementCSSInlineStyle {
6673
+ interface HTMLElement extends Element, DocumentAndElementEventHandlers, ElementCSSInlineStyle , ElementContentEditable, GlobalEventHandlers, HTMLOrSVGElement {
6674
6674
accessKey: string;
6675
6675
readonly accessKeyLabel: string;
6676
6676
autocapitalize: string;
@@ -10852,7 +10852,7 @@ declare var NavigationPreloadManager: {
10852
10852
};
10853
10853
10854
10854
/** The state and the identity of the user agent. It allows scripts to query it and to register themselves to carry on some activities. */
10855
- interface Navigator extends NavigatorID, NavigatorLanguage, NavigatorOnLine, NavigatorContentUtils, NavigatorCookies, NavigatorPlugins, NavigatorConcurrentHardware, NavigatorStorage, NavigatorAutomationInformation, MSFileSaver, MSNavigatorDoNotTrack, NavigatorBeacon {
10855
+ interface Navigator extends MSFileSaver, MSNavigatorDoNotTrack, NavigatorAutomationInformation, NavigatorBeacon, NavigatorConcurrentHardware, NavigatorContentUtils, NavigatorCookies, NavigatorID, NavigatorLanguage, NavigatorOnLine, NavigatorPlugins, NavigatorStorage {
10856
10856
readonly activeVRDisplays: ReadonlyArray<VRDisplay>;
10857
10857
readonly clipboard: Clipboard;
10858
10858
readonly credentials: CredentialsContainer;
@@ -11391,7 +11391,7 @@ declare var OffscreenCanvas: {
11391
11391
new(width: number, height: number): OffscreenCanvas;
11392
11392
};
11393
11393
11394
- interface OffscreenCanvasRenderingContext2D extends CanvasState, CanvasTransform, CanvasCompositing, CanvasImageSmoothing, CanvasFillStrokeStyles, CanvasShadowStyles, CanvasFilters, CanvasRect, CanvasDrawPath, CanvasText, CanvasDrawImage, CanvasImageData, CanvasPathDrawingStyles , CanvasTextDrawingStyles, CanvasPath {
11394
+ interface OffscreenCanvasRenderingContext2D extends CanvasCompositing, CanvasDrawImage, CanvasDrawPath, CanvasFillStrokeStyles, CanvasFilters, CanvasImageData, CanvasImageSmoothing, CanvasPath, CanvasPathDrawingStyles, CanvasRect, CanvasShadowStyles, CanvasState, CanvasText , CanvasTextDrawingStyles, CanvasTransform {
11395
11395
readonly canvas: OffscreenCanvas;
11396
11396
commit(): void;
11397
11397
}
@@ -13148,7 +13148,7 @@ interface SVGElementEventMap extends ElementEventMap, GlobalEventHandlersEventMa
13148
13148
}
13149
13149
13150
13150
/** All of the SVG DOM interfaces that correspond directly to elements in the SVG language derive from the SVGElement interface. */
13151
- interface SVGElement extends Element, GlobalEventHandlers, DocumentAndElementEventHandlers, SVGElementInstance , HTMLOrSVGElement, ElementCSSInlineStyle {
13151
+ interface SVGElement extends Element, DocumentAndElementEventHandlers, ElementCSSInlineStyle, GlobalEventHandlers , HTMLOrSVGElement, SVGElementInstance {
13152
13152
/** @deprecated */
13153
13153
readonly className: any;
13154
13154
readonly ownerSVGElement: SVGSVGElement | null;
@@ -14358,7 +14358,7 @@ declare var SVGPathSegMovetoRel: {
14358
14358
};
14359
14359
14360
14360
/** Corresponds to the <pattern> element. */
14361
- interface SVGPatternElement extends SVGElement, SVGTests, SVGFitToViewBox , SVGURIReference {
14361
+ interface SVGPatternElement extends SVGElement, SVGFitToViewBox, SVGTests , SVGURIReference {
14362
14362
readonly height: SVGAnimatedLength;
14363
14363
readonly patternContentUnits: SVGAnimatedEnumeration;
14364
14364
readonly patternTransform: SVGAnimatedTransformList;
@@ -15659,7 +15659,7 @@ interface TextDecoderCommon {
15659
15659
readonly ignoreBOM: boolean;
15660
15660
}
15661
15661
15662
- interface TextDecoderStream extends TextDecoderCommon, GenericTransformStream {
15662
+ interface TextDecoderStream extends GenericTransformStream, TextDecoderCommon {
15663
15663
}
15664
15664
15665
15665
declare var TextDecoderStream: {
@@ -15691,7 +15691,7 @@ interface TextEncoderCommon {
15691
15691
readonly encoding: string;
15692
15692
}
15693
15693
15694
- interface TextEncoderStream extends TextEncoderCommon, GenericTransformStream {
15694
+ interface TextEncoderStream extends GenericTransformStream, TextEncoderCommon {
15695
15695
}
15696
15696
15697
15697
declare var TextEncoderStream: {
@@ -16459,7 +16459,7 @@ declare var WebAuthnAssertion: {
16459
16459
new(): WebAuthnAssertion;
16460
16460
};
16461
16461
16462
- interface WebGL2RenderingContext extends WebGLRenderingContextBase, WebGL2RenderingContextBase, WebGL2RenderingContextOverloads {
16462
+ interface WebGL2RenderingContext extends WebGL2RenderingContextBase, WebGL2RenderingContextOverloads, WebGLRenderingContextBase {
16463
16463
}
16464
16464
16465
16465
declare var WebGL2RenderingContext: {
@@ -18512,7 +18512,7 @@ interface WindowEventMap extends GlobalEventHandlersEventMap, WindowEventHandler
18512
18512
}
18513
18513
18514
18514
/** A window containing a DOM document; the document property points to the DOM document loaded in that window. */
18515
- interface Window extends EventTarget, WindowTimers, WindowSessionStorage, WindowLocalStorage, WindowConsole, GlobalEventHandlers, IDBEnvironment, WindowBase64, AnimationFrameProvider, WindowOrWorkerGlobalScope, WindowEventHandlers {
18515
+ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandlers, IDBEnvironment, WindowBase64, WindowConsole, WindowEventHandlers, WindowLocalStorage, WindowOrWorkerGlobalScope, WindowSessionStorage, WindowTimers {
18516
18516
readonly applicationCache: ApplicationCache;
18517
18517
readonly caches: CacheStorage;
18518
18518
readonly clientInformation: Navigator;
0 commit comments