mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
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:
16
github-electron/github-electron.d.ts
vendored
16
github-electron/github-electron.d.ts
vendored
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user