// this file is generated — do not edit it /// /** * 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). * * _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. * * ```ts * import { API_KEY } from '$env/static/private'; * ``` * * 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: * * ``` * MY_FEATURE_FLAG="" * ``` * * You can override `.env` values from the command line like so: * * ```sh * MY_FEATURE_FLAG="enabled" npm run dev * ``` */ declare module '$env/static/private' { export const LESSOPEN: string; export const VSCODE_CWD: string; export const VSCODE_ESM_ENTRYPOINT: string; export const USER: string; export const VSCODE_NLS_CONFIG: string; export const npm_config_user_agent: string; export const VSCODE_WSL_EXT_LOCATION: string; export const VSCODE_HANDLES_UNCAUGHT_ERRORS: string; export const npm_node_execpath: string; export const SHLVL: string; export const npm_config_noproxy: string; export const HOME: string; export const OLDPWD: string; export const VSCODE_RECONNECTION_GRACE_TIME: string; export const VSCODE_IPC_HOOK_CLI: string; export const npm_package_json: string; export const PS1: string; export const npm_config_userconfig: string; export const npm_config_local_prefix: string; export const DBUS_SESSION_BUS_ADDRESS: string; export const WSL_DISTRO_NAME: string; export const COLOR: string; export const WAYLAND_DISPLAY: string; export const VSCODE_L10N_BUNDLE_LOCATION: string; export const LOGNAME: string; export const NAME: string; export const WSL_INTEROP: string; export const VSCODE_HANDLES_SIGPIPE: string; export const PULSE_SERVER: string; export const _: string; export const npm_config_prefix: string; export const npm_config_npm_version: string; export const TERM: string; export const npm_config_cache: string; export const npm_config_node_gyp: string; export const PATH: string; export const NODE: string; export const npm_package_name: string; export const XDG_RUNTIME_DIR: string; export const DISPLAY: string; export const LANG: string; export const VIRTUAL_ENV_PROMPT: string; export const LS_COLORS: string; export const npm_lifecycle_script: string; export const SHELL: string; export const npm_package_version: string; export const npm_lifecycle_event: string; export const ELECTRON_RUN_AS_NODE: string; export const KILOCODE_POSTHOG_API_KEY: string; export const GOOGLE_CLOUD_PROJECT: string; export const LESSCLOSE: string; export const VIRTUAL_ENV: string; export const npm_config_globalconfig: string; export const npm_config_init_module: string; export const PWD: string; export const LC_ALL: string; export const npm_execpath: string; export const XDG_DATA_DIRS: string; export const npm_config_global_prefix: string; export const npm_command: string; export const WSL2_GUI_APPS_ENABLED: string; export const HOSTTYPE: string; export const WSLENV: string; export const INIT_CWD: string; export const EDITOR: string; export const NODE_ENV: string; } /** * 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. * * Values are replaced statically at build time. * * ```ts * import { PUBLIC_BASE_URL } from '$env/static/public'; * ``` */ declare module '$env/static/public' { } /** * 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). * * This module cannot be imported into client-side code. * * ```ts * import { env } from '$env/dynamic/private'; * console.log(env.DEPLOYMENT_SPECIFIC_VARIABLE); * ``` * * > [!NOTE] In `dev`, `$env/dynamic` always includes environment variables from `.env`. In `prod`, this behavior will depend on your adapter. */ declare module '$env/dynamic/private' { export const env: { LESSOPEN: string; VSCODE_CWD: string; VSCODE_ESM_ENTRYPOINT: string; USER: string; VSCODE_NLS_CONFIG: string; npm_config_user_agent: string; VSCODE_WSL_EXT_LOCATION: string; VSCODE_HANDLES_UNCAUGHT_ERRORS: string; npm_node_execpath: string; SHLVL: string; npm_config_noproxy: string; HOME: string; OLDPWD: string; VSCODE_RECONNECTION_GRACE_TIME: string; VSCODE_IPC_HOOK_CLI: string; npm_package_json: string; PS1: string; npm_config_userconfig: string; npm_config_local_prefix: string; DBUS_SESSION_BUS_ADDRESS: string; WSL_DISTRO_NAME: string; COLOR: string; WAYLAND_DISPLAY: string; VSCODE_L10N_BUNDLE_LOCATION: string; LOGNAME: string; NAME: string; WSL_INTEROP: string; VSCODE_HANDLES_SIGPIPE: string; PULSE_SERVER: string; _: string; npm_config_prefix: string; npm_config_npm_version: string; TERM: string; npm_config_cache: string; npm_config_node_gyp: string; PATH: string; NODE: string; npm_package_name: string; XDG_RUNTIME_DIR: string; DISPLAY: string; LANG: string; VIRTUAL_ENV_PROMPT: string; LS_COLORS: string; npm_lifecycle_script: string; SHELL: string; npm_package_version: string; npm_lifecycle_event: string; ELECTRON_RUN_AS_NODE: string; KILOCODE_POSTHOG_API_KEY: string; GOOGLE_CLOUD_PROJECT: string; LESSCLOSE: string; VIRTUAL_ENV: string; npm_config_globalconfig: string; npm_config_init_module: string; PWD: string; LC_ALL: string; npm_execpath: string; XDG_DATA_DIRS: string; npm_config_global_prefix: string; npm_command: string; WSL2_GUI_APPS_ENABLED: string; HOSTTYPE: string; WSLENV: string; INIT_CWD: string; EDITOR: string; NODE_ENV: string; [key: `PUBLIC_${string}`]: undefined; [key: `${string}`]: string | undefined; } } /** * 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. * * 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. * * ```ts * import { env } from '$env/dynamic/public'; * console.log(env.PUBLIC_DEPLOYMENT_SPECIFIC_VARIABLE); * ``` */ declare module '$env/dynamic/public' { export const env: { [key: `PUBLIC_${string}`]: string | undefined; } }