cleanup zoomlevel configuration

This commit is contained in:
Benjamin Pasero
2015-12-01 17:47:02 +01:00
parent fe88d384e6
commit 158be75173
4 changed files with 27 additions and 8 deletions

View File

@@ -26,6 +26,14 @@ import ipc = require('ipc');
const Shell = remote.require('shell');
const Dialog = remote.require('dialog');
export interface IWindowConfiguration {
window: {
openFilesInNewWindow: boolean;
reopenFolders: string;
zoomLevel: number;
}
}
export class ElectronWindow {
private win: remote.BrowserWindow;