// this file is generated — do not edit it /// /** * This module provides access to environment variables that are injected _statically_ into your bundle at build time and are limited to _private_ access. * * | | Runtime | Build time | * | ------- | -------------------------------------------------------------------------- | ------------------------------------------------------------------------ | * | Private | [`$env/dynamic/private`](https://svelte.dev/docs/kit/$env-dynamic-private) | [`$env/static/private`](https://svelte.dev/docs/kit/$env-static-private) | * | Public | [`$env/dynamic/public`](https://svelte.dev/docs/kit/$env-dynamic-public) | [`$env/static/public`](https://svelte.dev/docs/kit/$env-static-public) | * * Static environment variables are [loaded by Vite](https://vitejs.dev/guide/env-and-mode.html#env-files) from `.env` files and `process.env` at build time and then statically injected into your bundle at build time, enabling optimisations like dead code elimination. * * **_Private_ access:** * * - 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) * * For example, given the following build time environment: * * ```env * ENVIRONMENT=production * PUBLIC_BASE_URL=http://site.com * ``` * * With the default `publicPrefix` and `privatePrefix`: * * ```ts * import { ENVIRONMENT, PUBLIC_BASE_URL } from '$env/static/private'; * * console.log(ENVIRONMENT); // => "production" * console.log(PUBLIC_BASE_URL); // => throws error during build * ``` * * The above values will be the same _even if_ different values for `ENVIRONMENT` or `PUBLIC_BASE_URL` are set at runtime, as they are statically replaced in your code with their build time values. */ declare module '$env/static/private' { export const CAML_LD_LIBRARY_PATH: string; export const TERM_PROGRAM: string; export const NODE: string; export const TERM: string; export const SHELL: string; export const HOMEBREW_REPOSITORY: string; export const TMPDIR: string; export const CONDA_SHLVL: string; export const VSCODE_PYTHON_AUTOACTIVATE_GUARD: string; export const TERM_PROGRAM_VERSION: string; export const CONDA_PROMPT_MODIFIER: string; export const MallocSpaceEfficient: string; export const ZDOTDIR: string; export const MallocNanoZone: string; export const OPAM_SWITCH_PREFIX: string; export const npm_config_local_prefix: string; export const EXTENSION_KIT_EXTENSION_TYPE: string; export const OCAML_TOPLEVEL_PATH: string; export const USER: string; export const COMMAND_MODE: string; export const CONDA_EXE: string; export const SSH_AUTH_SOCK: string; export const VSCODE_PROFILE_INITIALIZED: string; export const __CF_USER_TEXT_ENCODING: string; export const npm_execpath: string; export const PATH: string; export const npm_package_json: string; export const _: string; export const USER_ZDOTDIR: string; export const CONDA_PREFIX: string; export const __CFBundleIdentifier: string; export const npm_command: string; export const PWD: string; export const npm_lifecycle_event: string; export const npm_package_name: string; export const LANG: string; export const OPAM_LAST_ENV: string; export const VSCODE_GIT_ASKPASS_EXTRA_ARGS: string; export const XPC_FLAGS: string; export const npm_package_version: string; export const XPC_SERVICE_NAME: string; export const VSCODE_INJECTION: string; export const ANTIGRAVITY_CLI_ALIAS: string; export const SHLVL: string; export const HOME: string; export const VSCODE_GIT_ASKPASS_MAIN: string; export const HOMEBREW_PREFIX: string; export const CONDA_PYTHON_EXE: string; export const LOGNAME: string; export const npm_lifecycle_script: string; export const VSCODE_GIT_IPC_HANDLE: string; export const CONDA_DEFAULT_ENV: string; export const BUN_INSTALL: string; export const npm_config_user_agent: string; export const VSCODE_GIT_ASKPASS_NODE: string; export const GIT_ASKPASS: string; export const INFOPATH: string; export const HOMEBREW_CELLAR: string; export const DISPLAY: string; export const OSLogRateLimit: string; export const npm_node_execpath: string; export const COLORTERM: string; export const NODE_ENV: string; } /** * This module provides access to environment variables that are injected _statically_ into your bundle at build time and are _publicly_ accessible. * * | | Runtime | Build time | * | ------- | -------------------------------------------------------------------------- | ------------------------------------------------------------------------ | * | Private | [`$env/dynamic/private`](https://svelte.dev/docs/kit/$env-dynamic-private) | [`$env/static/private`](https://svelte.dev/docs/kit/$env-static-private) | * | Public | [`$env/dynamic/public`](https://svelte.dev/docs/kit/$env-dynamic-public) | [`$env/static/public`](https://svelte.dev/docs/kit/$env-static-public) | * * Static environment variables are [loaded by Vite](https://vitejs.dev/guide/env-and-mode.html#env-files) from `.env` files and `process.env` at build time and then statically injected into your bundle at build time, enabling optimisations like dead code elimination. * * **_Public_ access:** * * - This module _can_ be imported into client-side code * - **Only** variables that begin with [`config.kit.env.publicPrefix`](https://svelte.dev/docs/kit/configuration#env) (which defaults to `PUBLIC_`) are included * * For example, given the following build time environment: * * ```env * ENVIRONMENT=production * PUBLIC_BASE_URL=http://site.com * ``` * * With the default `publicPrefix` and `privatePrefix`: * * ```ts * import { ENVIRONMENT, PUBLIC_BASE_URL } from '$env/static/public'; * * console.log(ENVIRONMENT); // => throws error during build * console.log(PUBLIC_BASE_URL); // => "http://site.com" * ``` * * The above values will be the same _even if_ different values for `ENVIRONMENT` or `PUBLIC_BASE_URL` are set at runtime, as they are statically replaced in your code with their build time values. */ declare module '$env/static/public' { } /** * This module provides access to environment variables set _dynamically_ at runtime and that are limited to _private_ access. * * | | Runtime | Build time | * | ------- | -------------------------------------------------------------------------- | ------------------------------------------------------------------------ | * | Private | [`$env/dynamic/private`](https://svelte.dev/docs/kit/$env-dynamic-private) | [`$env/static/private`](https://svelte.dev/docs/kit/$env-static-private) | * | Public | [`$env/dynamic/public`](https://svelte.dev/docs/kit/$env-dynamic-public) | [`$env/static/public`](https://svelte.dev/docs/kit/$env-static-public) | * * Dynamic environment variables are 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`. * * **_Private_ access:** * * - This module cannot be imported into client-side code * - This module 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) * * > [!NOTE] In `dev`, `$env/dynamic` includes environment variables from `.env`. In `prod`, this behavior will depend on your adapter. * * > [!NOTE] To get correct types, 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: * > * > ```env * > MY_FEATURE_FLAG= * > ``` * > * > You can override `.env` values from the command line like so: * > * > ```sh * > MY_FEATURE_FLAG="enabled" npm run dev * > ``` * * For example, given the following runtime environment: * * ```env * ENVIRONMENT=production * PUBLIC_BASE_URL=http://site.com * ``` * * With the default `publicPrefix` and `privatePrefix`: * * ```ts * import { env } from '$env/dynamic/private'; * * console.log(env.ENVIRONMENT); // => "production" * console.log(env.PUBLIC_BASE_URL); // => undefined * ``` */ declare module '$env/dynamic/private' { export const env: { CAML_LD_LIBRARY_PATH: string; TERM_PROGRAM: string; NODE: string; TERM: string; SHELL: string; HOMEBREW_REPOSITORY: string; TMPDIR: string; CONDA_SHLVL: string; VSCODE_PYTHON_AUTOACTIVATE_GUARD: string; TERM_PROGRAM_VERSION: string; CONDA_PROMPT_MODIFIER: string; MallocSpaceEfficient: string; ZDOTDIR: string; MallocNanoZone: string; OPAM_SWITCH_PREFIX: string; npm_config_local_prefix: string; EXTENSION_KIT_EXTENSION_TYPE: string; OCAML_TOPLEVEL_PATH: string; USER: string; COMMAND_MODE: string; CONDA_EXE: string; SSH_AUTH_SOCK: string; VSCODE_PROFILE_INITIALIZED: string; __CF_USER_TEXT_ENCODING: string; npm_execpath: string; PATH: string; npm_package_json: string; _: string; USER_ZDOTDIR: string; CONDA_PREFIX: string; __CFBundleIdentifier: string; npm_command: string; PWD: string; npm_lifecycle_event: string; npm_package_name: string; LANG: string; OPAM_LAST_ENV: string; VSCODE_GIT_ASKPASS_EXTRA_ARGS: string; XPC_FLAGS: string; npm_package_version: string; XPC_SERVICE_NAME: string; VSCODE_INJECTION: string; ANTIGRAVITY_CLI_ALIAS: string; SHLVL: string; HOME: string; VSCODE_GIT_ASKPASS_MAIN: string; HOMEBREW_PREFIX: string; CONDA_PYTHON_EXE: string; LOGNAME: string; npm_lifecycle_script: string; VSCODE_GIT_IPC_HANDLE: string; CONDA_DEFAULT_ENV: string; BUN_INSTALL: string; npm_config_user_agent: string; VSCODE_GIT_ASKPASS_NODE: string; GIT_ASKPASS: string; INFOPATH: string; HOMEBREW_CELLAR: string; DISPLAY: string; OSLogRateLimit: string; npm_node_execpath: string; COLORTERM: string; NODE_ENV: string; [key: `PUBLIC_${string}`]: undefined; [key: `${string}`]: string | undefined; } } /** * This module provides access to environment variables set _dynamically_ at runtime and that are _publicly_ accessible. * * | | Runtime | Build time | * | ------- | -------------------------------------------------------------------------- | ------------------------------------------------------------------------ | * | Private | [`$env/dynamic/private`](https://svelte.dev/docs/kit/$env-dynamic-private) | [`$env/static/private`](https://svelte.dev/docs/kit/$env-static-private) | * | Public | [`$env/dynamic/public`](https://svelte.dev/docs/kit/$env-dynamic-public) | [`$env/static/public`](https://svelte.dev/docs/kit/$env-static-public) | * * Dynamic environment variables are 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`. * * **_Public_ access:** * * - This module _can_ be imported into client-side code * - **Only** variables that begin with [`config.kit.env.publicPrefix`](https://svelte.dev/docs/kit/configuration#env) (which defaults to `PUBLIC_`) are included * * > [!NOTE] In `dev`, `$env/dynamic` includes environment variables from `.env`. In `prod`, this behavior will depend on your adapter. * * > [!NOTE] To get correct types, 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: * > * > ```env * > MY_FEATURE_FLAG= * > ``` * > * > You can override `.env` values from the command line like so: * > * > ```sh * > MY_FEATURE_FLAG="enabled" npm run dev * > ``` * * For example, given the following runtime environment: * * ```env * ENVIRONMENT=production * PUBLIC_BASE_URL=http://example.com * ``` * * With the default `publicPrefix` and `privatePrefix`: * * ```ts * import { env } from '$env/dynamic/public'; * console.log(env.ENVIRONMENT); // => undefined, not public * console.log(env.PUBLIC_BASE_URL); // => "http://example.com" * ``` * * ``` * * ``` */ declare module '$env/dynamic/public' { export const env: { [key: `PUBLIC_${string}`]: string | undefined; } }