-
Notifications
You must be signed in to change notification settings - Fork 752
Expand file tree
/
Copy pathtemplates.ts
More file actions
36 lines (35 loc) · 994 Bytes
/
templates.ts
File metadata and controls
36 lines (35 loc) · 994 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { Templates } from './interfaces';
export const SHOW_ME_TEMPLATES: Templates = {
'Electron APIs': {
App: 'App',
AutoUpdater: 'AutoUpdater',
BrowserView: 'BrowserView',
BrowserWindow: 'BrowserWindow',
Clipboard: 'clipboard',
ContentTracing: 'ContentTracing',
Cookies: 'Cookies',
CrashReporter: 'CrashReporter',
Debugger: 'Debugger',
DesktopCapturer: 'DesktopCapturer',
Dialog: 'Dialog',
GlobalShortcut: 'GlobalShortcut',
IPC: 'IPC',
Menu: 'Menu',
NativeImage: 'NativeImage',
Net: 'Net',
Notification: 'Notification',
PowerMonitor: 'PowerMonitor',
PowerSaveBlocker: 'PowerSaveBlocker',
Protocol: 'Protocol',
Screen: 'Screen',
Session: 'Session',
Shell: 'Shell',
SystemPreferences: 'systemPreferences',
TouchBar: 'TouchBar',
Tray: 'Tray',
utilityProcess: 'utilityProcess',
WebContents: 'WebContents',
WebContentsView: 'WebContentsView',
WebFrame: 'WebFrame',
},
};