mirror of
https://github.com/MercuryWorkshop/scramjet.git
synced 2025-05-13 22:40:01 -04:00
8 lines
274 B
TypeScript
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;
|