Claptrap-ui/env.d.ts

13 lines
316 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-06-12 12:51:05 +02:00
readonly VITE_APP_TITLE: string;
2022-05-21 01:07:31 +02:00
// more env variables...
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}