forked from hamcha/tghandbook
10 lines
194 B
TypeScript
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;
|
|
}
|