Claptrap-ui/env.d.ts

12 lines
281 B
TypeScript
Raw Normal View History

2022-05-21 01:07:31 +02:00
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_OAUTH_REDIRECT_URL: string;
readonly VITE_API_BASE_URL: string;
2022-05-24 23:04:35 +02:00
readonly VITE_DISCORD_USER_AVATAR_URL: string;
2022-05-21 01:07:31 +02:00
// more env variables...
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}