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