Files
UT-Registration-Plus/@types/vite-env.d.ts
2024-10-23 14:15:47 -05:00

12 lines
254 B
TypeScript

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