bolt/types/debug.d.ts
2020-05-09 19:55:44 +02:00

9 lines
130 B
TypeScript

declare const debug: (value: any) => void;
declare module NodeJS {
interface Global {
debug: (value: any) => void;
}
}