@@ -18407,14 +18407,14 @@ interface Window extends EventTarget, WindowTimers, WindowSessionStorage, Window
18407
18407
readonly scrollX: number;
18408
18408
readonly scrollY: number;
18409
18409
readonly scrollbars: BarProp;
18410
- readonly self: typeof globalThis;
18410
+ readonly self: ( typeof globalThis) & { name: string } ;
18411
18411
readonly speechSynthesis: SpeechSynthesis;
18412
18412
status: string;
18413
18413
readonly statusbar: BarProp;
18414
18414
readonly styleMedia: StyleMedia;
18415
18415
readonly toolbar: BarProp;
18416
18416
readonly top: Window;
18417
- readonly window: typeof globalThis;
18417
+ readonly window: ( typeof globalThis) & { name: string } ;
18418
18418
alert(message?: any): void;
18419
18419
blur(): void;
18420
18420
/** @deprecated */
@@ -19396,14 +19396,14 @@ declare var screenY: number;
19396
19396
declare var scrollX: number;
19397
19397
declare var scrollY: number;
19398
19398
declare var scrollbars: BarProp;
19399
- declare var self: typeof globalThis;
19399
+ declare var self: ( typeof globalThis) & { name: string } ;
19400
19400
declare var speechSynthesis: SpeechSynthesis;
19401
19401
declare var status: string;
19402
19402
declare var statusbar: BarProp;
19403
19403
declare var styleMedia: StyleMedia;
19404
19404
declare var toolbar: BarProp;
19405
19405
declare var top: Window;
19406
- declare var window: typeof globalThis;
19406
+ declare var window: ( typeof globalThis) & { name: string } ;
19407
19407
declare function alert(message?: any): void;
19408
19408
declare function blur(): void;
19409
19409
/** @deprecated */
0 commit comments