-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathbase_footer.ts
49 lines (40 loc) · 1.22 KB
/
base_footer.ts
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
37
38
39
40
41
42
43
44
45
46
47
48
49
declare module 'electron' {
export = Electron.CrossProcessExports;
}
declare module 'electron/main' {
export = Electron.Main;
}
declare module 'electron/common' {
export = Electron.Common;
}
declare module 'electron/renderer' {
export = Electron.Renderer;
}
declare module 'electron/utility' {
export = Electron.Utility;
}
interface NodeRequireFunction {
(moduleName: 'electron'): typeof Electron.CrossProcessExports;
(moduleName: 'electron/main'): typeof Electron.Main;
(moduleName: 'electron/common'): typeof Electron.Common;
(moduleName: 'electron/renderer'): typeof Electron.Renderer;
(moduleName: 'electron/utility'): typeof Electron.Utility;
}
interface NodeRequire {
(moduleName: 'electron'): typeof Electron.CrossProcessExports;
(moduleName: 'electron/main'): typeof Electron.Main;
(moduleName: 'electron/common'): typeof Electron.Common;
(moduleName: 'electron/renderer'): typeof Electron.Renderer;
(moduleName: 'electron/utility'): typeof Electron.Utility;
}
declare module 'original-fs' {
import * as fs from 'fs';
export = fs;
}
declare module 'node:original-fs' {
import * as fs from 'fs';
export = fs;
}
interface Document {
createElement(tagName: 'webview'): Electron.WebviewTag;
}