it-tools/env.d.ts

15 lines
303 B
TypeScript
Raw Normal View History

2022-03-30 22:33:29 +00:00
/// <reference types="vite/client" />
2022-04-14 20:41:51 +00:00
/// <reference types="vite-svg-loader" />
2022-04-16 09:45:50 +00:00
interface ImportMetaEnv {
2022-04-16 13:12:33 +00:00
VITE_PLAUSIBLE_API_HOST: string;
VITE_PLAUSIBLE_DOMAIN: string;
PACKAGE_VERSION: string;
GIT_SHORT_SHA: string;
PROD: boolean;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}