-
-
Notifications
You must be signed in to change notification settings - Fork 261
/
env.d.ts
25 lines (22 loc) · 876 Bytes
/
env.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/// <reference types="vite/client" />
/**
* Describes all existing environment variables and their types.
* Required for Code completion/intellisense and type checking.
*
* Note: To prevent accidentally leaking env variables to the client, only variables prefixed with `VITE_` are exposed to your Vite-processed code.
*
* @see https://github.com/vitejs/vite/blob/0a699856b248116632c1ac18515c0a5c7cf3d1db/packages/vite/types/importMeta.d.ts#L7-L14 Base Interface.
* @see https://vitejs.dev/guide/env-and-mode.html#env-files Vite Env Variables Doc.
*/
interface ImportMetaEnv {
/**
* URL where `renderer` web page is running.
* This variable is initialized in scripts/watch.ts
*/
readonly VITE_DEV_SERVER_URL: undefined | string;
/** Current app version */
readonly VITE_APP_VERSION: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}