mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-10 01:03:36 -05:00
10 lines
173 B
TypeScript
10 lines
173 B
TypeScript
interface ImportMetaEnv {
|
|
DEV: boolean;
|
|
VITE_API_URL: string;
|
|
VITE_THEMES_URL: string;
|
|
BASE_URL: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
env: ImportMetaEnv;
|
|
}
|