@@ -18407,14 +18407,14 @@ interface Window extends EventTarget, WindowTimers, WindowSessionStorage, Window
1840718407    readonly scrollX: number;
1840818408    readonly scrollY: number;
1840918409    readonly scrollbars: BarProp;
18410-     readonly self: typeof globalThis;
18410+     readonly self: ( typeof globalThis) & { name: string } ;
1841118411    readonly speechSynthesis: SpeechSynthesis;
1841218412    status: string;
1841318413    readonly statusbar: BarProp;
1841418414    readonly styleMedia: StyleMedia;
1841518415    readonly toolbar: BarProp;
1841618416    readonly top: Window;
18417-     readonly window: typeof globalThis;
18417+     readonly window: ( typeof globalThis) & { name: string } ;
1841818418    alert(message?: any): void;
1841918419    blur(): void;
1842018420    /** @deprecated */
@@ -19396,14 +19396,14 @@ declare var screenY: number;
1939619396declare var scrollX: number;
1939719397declare var scrollY: number;
1939819398declare var scrollbars: BarProp;
19399- declare var self: typeof globalThis;
19399+ declare var self: ( typeof globalThis) & { name: string } ;
1940019400declare var speechSynthesis: SpeechSynthesis;
1940119401declare var status: string;
1940219402declare var statusbar: BarProp;
1940319403declare var styleMedia: StyleMedia;
1940419404declare var toolbar: BarProp;
1940519405declare var top: Window;
19406- declare var window: typeof globalThis;
19406+ declare var window: ( typeof globalThis) & { name: string } ;
1940719407declare function alert(message?: any): void;
1940819408declare function blur(): void;
1940919409/** @deprecated */
0 commit comments