tghandbook/env.d.ts
2022-05-10 12:27:27 +02:00

11 lines
194 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_SUBDIR: string;
readonly VITE_APP_REVISION: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}