TeaWeb/webpack/build-definitions.d.ts

16 lines
317 B
TypeScript

declare global {
interface BuildDefinitions {
target: "web" | "client";
mode: "release" | "debug";
/* chunk for the loader to load initially */
entry_chunk_name: string;
version: string;
timestamp: number;
}
const __build: BuildDefinitions;
}
export {};