Made all entries in WebPreferences interface optional, reflecting documentation

This commit is contained in:
paarth
2015-12-13 16:50:08 -05:00
parent 8ea42cd8bb
commit 1cd9ab5ab0

View File

@@ -450,14 +450,14 @@ declare module GitHubElectron {
interface WebPreferences {
nodeIntegration?: boolean;
preload?: string;
partition: string;
zoomFactor: number;
javascript: boolean;
webSecurity: boolean;
allowDisplayingInsecureContent: boolean;
allowRunningInsecureContent: boolean;
images: boolean;
textAreasAreResizable: boolean;
partition?: string;
zoomFactor?: number;
javascript?: boolean;
webSecurity?: boolean;
allowDisplayingInsecureContent?: boolean;
allowRunningInsecureContent?: boolean;
images?: boolean;
textAreasAreResizable?: boolean;
webgl?: boolean;
webaudio?: boolean;
plugins?: boolean;