mirror of
https://github.com/MercuryWorkshop/scramjet.git
synced 2025-05-13 14:30:02 -04:00
11 lines
340 B
TypeScript
11 lines
340 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 const COMMITHASH: string;
|
|
declare const VERSION: string;
|
|
|
|
declare type Self = Window & typeof globalThis;
|