15 lines
316 B
TypeScript
15 lines
316 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
declare const __APP_VERSION__: string;
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_PUBLIC_URL: string;
|
|
readonly VITE_AD_ADAPTER: string;
|
|
readonly VITE_GA_MEASUREMENT_ID: string;
|
|
readonly VITE_ENABLE_PUSH: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|