scramjet / src /global.d.ts
soiz1's picture
Upload 150 files
bee6636 verified
raw
history blame contribute delete
463 Bytes
/// <reference types="@rspack/core/module" />
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;
time: (meta: URLMeta, before: number, type: string) => void;
};
declare const COMMITHASH: string;
declare const VERSION: string;
declare type Self = Window & typeof globalThis;