10 lines
130 B
TypeScript
10 lines
130 B
TypeScript
|
|
||
|
declare const debug: (value: any) => void;
|
||
|
|
||
|
declare module NodeJS {
|
||
|
interface Global {
|
||
|
debug: (value: any) => void;
|
||
|
}
|
||
|
}
|
||
|
|