Add declarations for the debug()-helper
This commit is contained in:
parent
b8ab10e50f
commit
28e02ac0f5
1 changed files with 9 additions and 0 deletions
9
types/debug.d.ts
vendored
Normal file
9
types/debug.d.ts
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
|
||||
declare const debug: (value: any) => void;
|
||||
|
||||
declare module NodeJS {
|
||||
interface Global {
|
||||
debug: (value: any) => void;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in a new issue