Add global typescript d file to prevent compiler errors. It's a hack, yeah, yeah.

This commit is contained in:
mmcwilliams 2019-03-21 15:03:24 -04:00
parent cf7664fb2a
commit 746f0e2753
1 changed files with 9 additions and 0 deletions

9
src/globals.d.ts vendored Normal file
View File

@ -0,0 +1,9 @@
declare module 'delay';
declare module 'log';
declare module 'intval';
declare module 'electron';
interface Arduino {
send (id : string, cmd : string) : number;
string (id : string, str : string) : any;
}