Files
UT-Registration-Plus/@types/vite-env.d.ts
2024-03-22 12:15:44 -05:00

11 lines
208 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_PACKAGE_VERSION: string;
readonly VITE_BETA_BUILD?: 'true';
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}