|
| 1 | + |
| 2 | +// this file is generated β do not edit it |
| 3 | + |
| 4 | + |
| 5 | +/// <reference types="@sveltejs/kit" /> |
| 6 | + |
| 7 | +/** |
| 8 | + * Environment variables [loaded by Vite](https://vitejs.dev/guide/env-and-mode.html#env-files) from `.env` files and `process.env`. Like [`$env/dynamic/private`](https://svelte.dev/docs/kit/$env-dynamic-private), this module cannot be imported into client-side code. This module only includes variables that _do not_ begin with [`config.kit.env.publicPrefix`](https://svelte.dev/docs/kit/configuration#env) _and do_ start with [`config.kit.env.privatePrefix`](https://svelte.dev/docs/kit/configuration#env) (if configured). |
| 9 | + * |
| 10 | + * _Unlike_ [`$env/dynamic/private`](https://svelte.dev/docs/kit/$env-dynamic-private), the values exported from this module are statically injected into your bundle at build time, enabling optimisations like dead code elimination. |
| 11 | + * |
| 12 | + * ```ts |
| 13 | + * import { API_KEY } from '$env/static/private'; |
| 14 | + * ``` |
| 15 | + * |
| 16 | + * Note that all environment variables referenced in your code should be declared (for example in an `.env` file), even if they don't have a value until the app is deployed: |
| 17 | + * |
| 18 | + * ``` |
| 19 | + * MY_FEATURE_FLAG="" |
| 20 | + * ``` |
| 21 | + * |
| 22 | + * You can override `.env` values from the command line like so: |
| 23 | + * |
| 24 | + * ```bash |
| 25 | + * MY_FEATURE_FLAG="enabled" npm run dev |
| 26 | + * ``` |
| 27 | + */ |
| 28 | +declare module '$env/static/private' { |
| 29 | + export const GITHUB_TOKEN: string; |
| 30 | + export const TMUX: string; |
| 31 | + export const POETRY_VIRTUALENVS_PATH: string; |
| 32 | + export const MAIL: string; |
| 33 | + export const npm_config_user_agent: string; |
| 34 | + export const GIT_EDITOR: string; |
| 35 | + export const HOSTNAME: string; |
| 36 | + export const OPENVSCODE_SERVER_ROOT: string; |
| 37 | + export const npm_node_execpath: string; |
| 38 | + export const SHLVL: string; |
| 39 | + export const npm_config_noproxy: string; |
| 40 | + export const HOME: string; |
| 41 | + export const CONDA_SHLVL: string; |
| 42 | + export const github_token: string; |
| 43 | + export const OLDPWD: string; |
| 44 | + export const TERM_PROGRAM_VERSION: string; |
| 45 | + export const npm_package_json: string; |
| 46 | + export const PYTHONUNBUFFERED: string; |
| 47 | + export const GPG_KEY: string; |
| 48 | + export const PS1: string; |
| 49 | + export const POETRY_HOME: string; |
| 50 | + export const npm_config_userconfig: string; |
| 51 | + export const npm_config_local_prefix: string; |
| 52 | + export const PS2: string; |
| 53 | + export const PYTHON_SHA256: string; |
| 54 | + export const VISUAL: string; |
| 55 | + export const COLOR: string; |
| 56 | + export const _: string; |
| 57 | + export const npm_config_prefix: string; |
| 58 | + export const npm_config_npm_version: string; |
| 59 | + export const PIP_BREAK_SYSTEM_PACKAGES: string; |
| 60 | + export const TERM: string; |
| 61 | + export const npm_config_cache: string; |
| 62 | + export const npm_config_node_gyp: string; |
| 63 | + export const PATH: string; |
| 64 | + export const NODE: string; |
| 65 | + export const npm_package_name: string; |
| 66 | + export const port: string; |
| 67 | + export const MAMBA_ROOT_PREFIX: string; |
| 68 | + export const SDL_AUDIODRIVER: string; |
| 69 | + export const TIKTOKEN_CACHE_DIR: string; |
| 70 | + export const LANG: string; |
| 71 | + export const VSCODE_PORT: string; |
| 72 | + export const TERM_PROGRAM: string; |
| 73 | + export const npm_lifecycle_script: string; |
| 74 | + export const GSETTINGS_SCHEMA_DIR: string; |
| 75 | + export const SHELL: string; |
| 76 | + export const npm_package_version: string; |
| 77 | + export const npm_lifecycle_event: string; |
| 78 | + export const PYTHON_VERSION: string; |
| 79 | + export const PROMPT_COMMAND: string; |
| 80 | + export const OH_INTERPRETER_PATH: string; |
| 81 | + export const CONDA_DEFAULT_ENV: string; |
| 82 | + export const MAMBA_EXE: string; |
| 83 | + export const VIRTUAL_ENV: string; |
| 84 | + export const npm_config_globalconfig: string; |
| 85 | + export const npm_config_init_module: string; |
| 86 | + export const PWD: string; |
| 87 | + export const LC_ALL: string; |
| 88 | + export const npm_execpath: string; |
| 89 | + export const npm_config_global_prefix: string; |
| 90 | + export const APP_PORT_1: string; |
| 91 | + export const npm_command: string; |
| 92 | + export const APP_PORT_2: string; |
| 93 | + export const CONDA_PREFIX: string; |
| 94 | + export const GSETTINGS_SCHEMA_DIR_CONDA_BACKUP: string; |
| 95 | + export const TMUX_PANE: string; |
| 96 | + export const EDITOR: string; |
| 97 | + export const PYGAME_HIDE_SUPPORT_PROMPT: string; |
| 98 | + export const INIT_CWD: string; |
| 99 | + export const NODE_ENV: string; |
| 100 | +} |
| 101 | + |
| 102 | +/** |
| 103 | + * Similar to [`$env/static/private`](https://svelte.dev/docs/kit/$env-static-private), except that it only includes environment variables that begin with [`config.kit.env.publicPrefix`](https://svelte.dev/docs/kit/configuration#env) (which defaults to `PUBLIC_`), and can therefore safely be exposed to client-side code. |
| 104 | + * |
| 105 | + * Values are replaced statically at build time. |
| 106 | + * |
| 107 | + * ```ts |
| 108 | + * import { PUBLIC_BASE_URL } from '$env/static/public'; |
| 109 | + * ``` |
| 110 | + */ |
| 111 | +declare module '$env/static/public' { |
| 112 | + |
| 113 | +} |
| 114 | + |
| 115 | +/** |
| 116 | + * This module provides access to runtime environment variables, as defined by the platform you're running on. For example if you're using [`adapter-node`](https://github.com/sveltejs/kit/tree/main/packages/adapter-node) (or running [`vite preview`](https://svelte.dev/docs/kit/cli)), this is equivalent to `process.env`. This module only includes variables that _do not_ begin with [`config.kit.env.publicPrefix`](https://svelte.dev/docs/kit/configuration#env) _and do_ start with [`config.kit.env.privatePrefix`](https://svelte.dev/docs/kit/configuration#env) (if configured). |
| 117 | + * |
| 118 | + * This module cannot be imported into client-side code. |
| 119 | + * |
| 120 | + * Dynamic environment variables cannot be used during prerendering. |
| 121 | + * |
| 122 | + * ```ts |
| 123 | + * import { env } from '$env/dynamic/private'; |
| 124 | + * console.log(env.DEPLOYMENT_SPECIFIC_VARIABLE); |
| 125 | + * ``` |
| 126 | + * |
| 127 | + * > In `dev`, `$env/dynamic` always includes environment variables from `.env`. In `prod`, this behavior will depend on your adapter. |
| 128 | + */ |
| 129 | +declare module '$env/dynamic/private' { |
| 130 | + export const env: { |
| 131 | + GITHUB_TOKEN: string; |
| 132 | + TMUX: string; |
| 133 | + POETRY_VIRTUALENVS_PATH: string; |
| 134 | + MAIL: string; |
| 135 | + npm_config_user_agent: string; |
| 136 | + GIT_EDITOR: string; |
| 137 | + HOSTNAME: string; |
| 138 | + OPENVSCODE_SERVER_ROOT: string; |
| 139 | + npm_node_execpath: string; |
| 140 | + SHLVL: string; |
| 141 | + npm_config_noproxy: string; |
| 142 | + HOME: string; |
| 143 | + CONDA_SHLVL: string; |
| 144 | + github_token: string; |
| 145 | + OLDPWD: string; |
| 146 | + TERM_PROGRAM_VERSION: string; |
| 147 | + npm_package_json: string; |
| 148 | + PYTHONUNBUFFERED: string; |
| 149 | + GPG_KEY: string; |
| 150 | + PS1: string; |
| 151 | + POETRY_HOME: string; |
| 152 | + npm_config_userconfig: string; |
| 153 | + npm_config_local_prefix: string; |
| 154 | + PS2: string; |
| 155 | + PYTHON_SHA256: string; |
| 156 | + VISUAL: string; |
| 157 | + COLOR: string; |
| 158 | + _: string; |
| 159 | + npm_config_prefix: string; |
| 160 | + npm_config_npm_version: string; |
| 161 | + PIP_BREAK_SYSTEM_PACKAGES: string; |
| 162 | + TERM: string; |
| 163 | + npm_config_cache: string; |
| 164 | + npm_config_node_gyp: string; |
| 165 | + PATH: string; |
| 166 | + NODE: string; |
| 167 | + npm_package_name: string; |
| 168 | + port: string; |
| 169 | + MAMBA_ROOT_PREFIX: string; |
| 170 | + SDL_AUDIODRIVER: string; |
| 171 | + TIKTOKEN_CACHE_DIR: string; |
| 172 | + LANG: string; |
| 173 | + VSCODE_PORT: string; |
| 174 | + TERM_PROGRAM: string; |
| 175 | + npm_lifecycle_script: string; |
| 176 | + GSETTINGS_SCHEMA_DIR: string; |
| 177 | + SHELL: string; |
| 178 | + npm_package_version: string; |
| 179 | + npm_lifecycle_event: string; |
| 180 | + PYTHON_VERSION: string; |
| 181 | + PROMPT_COMMAND: string; |
| 182 | + OH_INTERPRETER_PATH: string; |
| 183 | + CONDA_DEFAULT_ENV: string; |
| 184 | + MAMBA_EXE: string; |
| 185 | + VIRTUAL_ENV: string; |
| 186 | + npm_config_globalconfig: string; |
| 187 | + npm_config_init_module: string; |
| 188 | + PWD: string; |
| 189 | + LC_ALL: string; |
| 190 | + npm_execpath: string; |
| 191 | + npm_config_global_prefix: string; |
| 192 | + APP_PORT_1: string; |
| 193 | + npm_command: string; |
| 194 | + APP_PORT_2: string; |
| 195 | + CONDA_PREFIX: string; |
| 196 | + GSETTINGS_SCHEMA_DIR_CONDA_BACKUP: string; |
| 197 | + TMUX_PANE: string; |
| 198 | + EDITOR: string; |
| 199 | + PYGAME_HIDE_SUPPORT_PROMPT: string; |
| 200 | + INIT_CWD: string; |
| 201 | + NODE_ENV: string; |
| 202 | + [key: `PUBLIC_${string}`]: undefined; |
| 203 | + [key: `${string}`]: string | undefined; |
| 204 | + } |
| 205 | +} |
| 206 | + |
| 207 | +/** |
| 208 | + * Similar to [`$env/dynamic/private`](https://svelte.dev/docs/kit/$env-dynamic-private), but only includes variables that begin with [`config.kit.env.publicPrefix`](https://svelte.dev/docs/kit/configuration#env) (which defaults to `PUBLIC_`), and can therefore safely be exposed to client-side code. |
| 209 | + * |
| 210 | + * Note that public dynamic environment variables must all be sent from the server to the client, causing larger network requests β when possible, use `$env/static/public` instead. |
| 211 | + * |
| 212 | + * Dynamic environment variables cannot be used during prerendering. |
| 213 | + * |
| 214 | + * ```ts |
| 215 | + * import { env } from '$env/dynamic/public'; |
| 216 | + * console.log(env.PUBLIC_DEPLOYMENT_SPECIFIC_VARIABLE); |
| 217 | + * ``` |
| 218 | + */ |
| 219 | +declare module '$env/dynamic/public' { |
| 220 | + export const env: { |
| 221 | + [key: `PUBLIC_${string}`]: string | undefined; |
| 222 | + } |
| 223 | +} |
0 commit comments