bolt/types/debug.d.ts

10 lines
130 B
TypeScript
Raw Normal View History

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