scramjet/src/global.d.ts
2024-07-28 14:41:44 -04:00

8 lines
274 B
TypeScript

declare const dbg: {
log: (message: string, ...args: any[]) => void;
warn: (message: string, ...args: any[]) => void;
error: (message: string, ...args: any[]) => void;
debug: (message: string, ...args: any[]) => void;
};
declare type Self = Window & typeof globalThis;