System to handle IPC communication

This commit is contained in:
Geomitron
2020-02-03 23:24:15 -05:00
parent 95c46cad39
commit a4becd92aa
10 changed files with 150 additions and 22 deletions

13
src/typings.d.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
/* SystemJS module definition */
declare var nodeModule: NodeModule
interface NodeModule {
id: string
}
// @ts-ignore
declare var window: Window
interface Window {
process: any
require: any
jQuery: any
}