|
@@ -181,12 +181,6 @@ declare namespace NodeJS {
|
|
|
_linkedBinding(name: 'electron_common_environment'): EnvironmentBinding;
|
|
|
_linkedBinding(name: 'electron_common_features'): FeaturesBinding;
|
|
|
_linkedBinding(name: 'electron_common_native_image'): { nativeImage: typeof Electron.NativeImage };
|
|
|
- _linkedBinding(name: 'electron_common_native_theme'): { nativeTheme: Electron.NativeTheme };
|
|
|
- _linkedBinding(name: 'electron_common_notification'): {
|
|
|
- isSupported(): boolean;
|
|
|
- Notification: typeof Electron.Notification;
|
|
|
- }
|
|
|
- _linkedBinding(name: 'electron_common_screen'): { createScreen(): Electron.Screen };
|
|
|
_linkedBinding(name: 'electron_common_shell'): Electron.Shell;
|
|
|
_linkedBinding(name: 'electron_common_v8_util'): V8UtilBinding;
|
|
|
_linkedBinding(name: 'electron_browser_app'): { app: Electron.App, App: Function };
|
|
@@ -218,6 +212,7 @@ declare namespace NodeJS {
|
|
|
_linkedBinding(name: 'electron_browser_message_port'): {
|
|
|
createPair(): { port1: Electron.MessagePortMain, port2: Electron.MessagePortMain };
|
|
|
};
|
|
|
+ _linkedBinding(name: 'electron_browser_native_theme'): { nativeTheme: Electron.NativeTheme };
|
|
|
_linkedBinding(name: 'electron_browser_net'): {
|
|
|
isOnline(): boolean;
|
|
|
isValidHeaderName: (headerName: string) => boolean;
|
|
@@ -227,10 +222,15 @@ declare namespace NodeJS {
|
|
|
net: any;
|
|
|
createURLLoader(options: CreateURLLoaderOptions): URLLoader;
|
|
|
};
|
|
|
+ _linkedBinding(name: 'electron_browser_notification'): {
|
|
|
+ isSupported(): boolean;
|
|
|
+ Notification: typeof Electron.Notification;
|
|
|
+ }
|
|
|
_linkedBinding(name: 'electron_browser_power_monitor'): PowerMonitorBinding;
|
|
|
_linkedBinding(name: 'electron_browser_power_save_blocker'): { powerSaveBlocker: Electron.PowerSaveBlocker };
|
|
|
_linkedBinding(name: 'electron_browser_safe_storage'): { safeStorage: Electron.SafeStorage };
|
|
|
_linkedBinding(name: 'electron_browser_session'): typeof Electron.Session;
|
|
|
+ _linkedBinding(name: 'electron_browser_screen'): { createScreen(): Electron.Screen };
|
|
|
_linkedBinding(name: 'electron_browser_system_preferences'): { systemPreferences: Electron.SystemPreferences };
|
|
|
_linkedBinding(name: 'electron_browser_tray'): { Tray: Electron.Tray };
|
|
|
_linkedBinding(name: 'electron_browser_view'): { View: Electron.View };
|