Partypack/src/vite-env.d.ts

9 lines
168 B
TypeScript
Raw Normal View History

2024-01-20 23:32:53 +01:00
/// <reference types="vite/client" />
2024-01-28 11:07:10 +01:00
interface ImportMetaEnv {
readonly VITE_SERVER_ROOT_URL: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}