File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -3,15 +3,15 @@ declare module 'electron' {
3
3
}
4
4
5
5
declare module 'electron/main' {
6
- export = Electron . Main
6
+ export = Electron . Main ;
7
7
}
8
8
9
9
declare module 'electron/common' {
10
- export = Electron . Common
10
+ export = Electron . Common ;
11
11
}
12
12
13
13
declare module 'electron/renderer' {
14
- export = Electron . Renderer
14
+ export = Electron . Renderer ;
15
15
}
16
16
17
17
interface NodeRequireFunction {
@@ -29,9 +29,9 @@ interface NodeRequire {
29
29
}
30
30
31
31
interface File {
32
- /**
33
- * The real path to the file on the users filesystem
34
- */
32
+ /**
33
+ * The real path to the file on the users filesystem
34
+ */
35
35
path : string ;
36
36
}
37
37
@@ -41,9 +41,10 @@ declare module 'original-fs' {
41
41
}
42
42
43
43
declare module 'node:original-fs' {
44
- export * from 'original-fs' ;
44
+ import * as fs from 'fs' ;
45
+ export = fs ;
45
46
}
46
47
47
48
interface Document {
48
49
createElement ( tagName : 'webview' ) : Electron . WebviewTag ;
49
- }
50
+ }
You can’t perform that action at this time.
0 commit comments