cursed logging

This commit is contained in:
velzie 2024-07-21 12:16:24 -04:00
parent 4f08948e98
commit 2598bee87b
No known key found for this signature in database
GPG key ID: 048413F95F0DDE1F
6 changed files with 147 additions and 7 deletions

6
src/global.d.ts vendored Normal file
View file

@ -0,0 +1,6 @@
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;
};