Merge pull request #7182 from paarthk/github-electron-webPreferences-optional

Made all entries in github-electron's WebPreferences interface optional
This commit is contained in:
Masahiro Wakame
2015-12-16 00:29:37 +09:00

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;