@@ -6044,6 +6044,12 @@ interface HTMLDocument extends Document {
60446044 removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
60456045}
60466046
6047+ /** @deprecated */
6048+ declare var HTMLDocument: {
6049+ prototype: HTMLDocument;
6050+ new(): HTMLDocument;
6051+ };
6052+
60476053interface HTMLElementEventMap extends ElementEventMap, DocumentAndElementEventHandlersEventMap, GlobalEventHandlersEventMap {
60486054}
60496055
@@ -16000,7 +16006,6 @@ interface WindowEventMap extends GlobalEventHandlersEventMap, WindowEventHandler
1600016006
1600116007/** A window containing a DOM document; the document property points to the DOM document loaded in that window. */
1600216008interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandlers, WindowEventHandlers, WindowLocalStorage, WindowOrWorkerGlobalScope, WindowSessionStorage {
16003- HTMLDocument: Document;
1600416009 /** @deprecated This is a legacy alias of `navigator`. */
1600516010 readonly clientInformation: Navigator;
1600616011 /** Returns true if the window has been closed, false otherwise. */
@@ -17035,7 +17040,6 @@ declare var Image: {
1703517040declare var Option: {
1703617041 new(text?: string, value?: string, defaultSelected?: boolean, selected?: boolean): HTMLOptionElement;
1703717042};
17038- declare var HTMLDocument: Document;
1703917043/** @deprecated This is a legacy alias of `navigator`. */
1704017044declare var clientInformation: Navigator;
1704117045/** Returns true if the window has been closed, false otherwise. */
0 commit comments