This repository has been archived on 2022-05-10. You can view files and clone it, but cannot push or open issues or pull requests.
tghandbook/env.d.ts
Hamcha db35e9640f
Some checks failed
continuous-integration/drone Build is failing
Use Vite
2022-05-10 12:27:27 +02:00

10 lines
194 B
TypeScript

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