1 | import { NewWindowOptions, WindowSearchParams } from '../../common/window';
|
2 | import { DefaultWindowService } from '../../browser/window/default-window-service';
|
3 | import { ElectronMainWindowService } from '../../electron-common/electron-main-window-service';
|
4 | import { ElectronWindowPreferences } from './electron-window-preferences';
|
5 | export declare class ElectronWindowService extends DefaultWindowService {
|
6 | |
7 |
|
8 |
|
9 | protected isUnloading: boolean;
|
10 | |
11 |
|
12 |
|
13 | protected closeOnUnload: boolean;
|
14 | protected readonly delegate: ElectronMainWindowService;
|
15 | protected readonly electronWindowPreferences: ElectronWindowPreferences;
|
16 | openNewWindow(url: string, { external }?: NewWindowOptions): undefined;
|
17 | openNewDefaultWindow(params?: WindowSearchParams): void;
|
18 | protected init(): void;
|
19 | protected registerUnloadListeners(): void;
|
20 | |
21 |
|
22 |
|
23 | protected updateWindowZoomLevel(): Promise<void>;
|
24 | reload(params?: WindowSearchParams): void;
|
25 | }
|
26 |
|
\ | No newline at end of file |