11 lines
208 B
TypeScript
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;
|
|
}
|