File size: 463 Bytes
bee6636 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
/// <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;
|