Add declarations for the debug()-helper

This commit is contained in:
Sam Vervaeck 2020-05-09 19:55:44 +02:00
parent b8ab10e50f
commit 28e02ac0f5

9
types/debug.d.ts vendored Normal file
View file

@ -0,0 +1,9 @@
declare const debug: (value: any) => void;
declare module NodeJS {
interface Global {
debug: (value: any) => void;
}
}