@@ -18478,11 +18478,6 @@ interface WindowEventMap extends GlobalEventHandlersEventMap, WindowEventHandler
1847818478
1847918479/** A window containing a DOM document; the document property points to the DOM document loaded in that window. */
1848018480interface Window extends EventTarget, WindowTimers, WindowSessionStorage, WindowLocalStorage, WindowConsole, GlobalEventHandlers, IDBEnvironment, WindowBase64, AnimationFrameProvider, WindowOrWorkerGlobalScope, WindowEventHandlers {
18481- Blob: typeof Blob;
18482- TextDecoder: typeof TextDecoder;
18483- TextEncoder: typeof TextEncoder;
18484- URL: typeof URL;
18485- URLSearchParams: typeof URLSearchParams;
1848618481 readonly applicationCache: ApplicationCache;
1848718482 readonly caches: CacheStorage;
1848818483 readonly clientInformation: Navigator;
@@ -18562,14 +18557,14 @@ interface Window extends EventTarget, WindowTimers, WindowSessionStorage, Window
1856218557 readonly scrollX: number;
1856318558 readonly scrollY: number;
1856418559 readonly scrollbars: BarProp;
18565- readonly self: Window;
18560+ readonly self: Window & typeof globalThis ;
1856618561 readonly speechSynthesis: SpeechSynthesis;
1856718562 status: string;
1856818563 readonly statusbar: BarProp;
1856918564 readonly styleMedia: StyleMedia;
1857018565 readonly toolbar: BarProp;
1857118566 readonly top: Window;
18572- readonly window: Window;
18567+ readonly window: Window & typeof globalThis ;
1857318568 alert(message?: any): void;
1857418569 blur(): void;
1857518570 /** @deprecated */
@@ -19472,11 +19467,6 @@ declare var Image: {
1947219467declare var Option: {
1947319468 new(text?: string, value?: string, defaultSelected?: boolean, selected?: boolean): HTMLOptionElement;
1947419469};
19475- declare var Blob: typeof Blob;
19476- declare var TextDecoder: typeof TextDecoder;
19477- declare var TextEncoder: typeof TextEncoder;
19478- declare var URL: typeof URL;
19479- declare var URLSearchParams: typeof URLSearchParams;
1948019470declare var applicationCache: ApplicationCache;
1948119471declare var caches: CacheStorage;
1948219472declare var clientInformation: Navigator;
@@ -19556,14 +19546,14 @@ declare var screenY: number;
1955619546declare var scrollX: number;
1955719547declare var scrollY: number;
1955819548declare var scrollbars: BarProp;
19559- declare var self: Window;
19549+ declare var self: Window & typeof globalThis ;
1956019550declare var speechSynthesis: SpeechSynthesis;
1956119551declare var status: string;
1956219552declare var statusbar: BarProp;
1956319553declare var styleMedia: StyleMedia;
1956419554declare var toolbar: BarProp;
1956519555declare var top: Window;
19566- declare var window: Window;
19556+ declare var window: Window & typeof globalThis ;
1956719557declare function alert(message?: any): void;
1956819558declare function blur(): void;
1956919559/** @deprecated */
0 commit comments