// 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 NVM_INC: string; export const TERM_PROGRAM: string; export const NODE: string; export const INIT_CWD: string; export const _P9K_TTY: string; export const NVM_CD_FLAGS: string; export const LOCIZE_API_KEY: string; export const TEST_USER_PASSWORD: string; export const TERM: string; export const SHELL: string; export const TMPDIR: string; export const HOMEBREW_REPOSITORY: string; export const TERM_PROGRAM_VERSION: string; export const WINDOWID: string; export const NODE_OPTIONS: string; export const ZPFX: string; export const npm_config_local_prefix: string; export const PMSPEC: string; export const USER: string; export const NVM_DIR: string; export const COMMAND_MODE: string; export const SSH_AUTH_SOCK: string; export const __CF_USER_TEXT_ENCODING: string; export const npm_execpath: string; export const BUN_WHICH_IGNORE_CWD: string; export const AWS_PROFILE: string; export const ZED_ENVIRONMENT: string; export const PATH: string; export const npm_package_json: string; export const _: string; export const LaunchInstanceID: string; export const JOBS: string; export const __CFBundleIdentifier: string; export const npm_command: string; export const PWD: string; export const npm_lifecycle_event: string; export const P9K_SSH: string; export const COGNITO_CLIENT_ID: string; export const npm_package_name: string; export const P9K_TTY: string; export const LANG: string; export const TEST_USER_MFA: string; export const XPC_FLAGS: string; export const npm_package_version: string; export const XPC_SERVICE_NAME: string; export const BUN_INTERNAL_BUNX_INSTALL: string; export const SHLVL: string; export const HOME: string; export const ZSH_CACHE_DIR: string; export const HOMEBREW_PREFIX: string; export const LOCIZE_PROJECT_ID: string; export const LOGNAME: string; export const npm_lifecycle_script: string; export const ALACRITTY_WINDOW_ID: string; export const ZED_TERM: string; export const NVM_BIN: string; export const BUN_INSTALL: string; export const npm_config_user_agent: string; export const INFOPATH: string; export const HOMEBREW_CELLAR: string; export const COGNITO_USERPOOL_ID: string; export const _P9K_SSH_TTY: string; export const TEST_USER_EMAIL: string; export const OSLogRateLimit: string; export const SECURITYSESSIONID: string; export const npm_node_execpath: string; export const COLORTERM: 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: { NVM_INC: string; TERM_PROGRAM: string; NODE: string; INIT_CWD: string; _P9K_TTY: string; NVM_CD_FLAGS: string; LOCIZE_API_KEY: string; TEST_USER_PASSWORD: string; TERM: string; SHELL: string; TMPDIR: string; HOMEBREW_REPOSITORY: string; TERM_PROGRAM_VERSION: string; WINDOWID: string; NODE_OPTIONS: string; ZPFX: string; npm_config_local_prefix: string; PMSPEC: string; USER: string; NVM_DIR: string; COMMAND_MODE: string; SSH_AUTH_SOCK: string; __CF_USER_TEXT_ENCODING: string; npm_execpath: string; BUN_WHICH_IGNORE_CWD: string; AWS_PROFILE: string; ZED_ENVIRONMENT: string; PATH: string; npm_package_json: string; _: string; LaunchInstanceID: string; JOBS: string; __CFBundleIdentifier: string; npm_command: string; PWD: string; npm_lifecycle_event: string; P9K_SSH: string; COGNITO_CLIENT_ID: string; npm_package_name: string; P9K_TTY: string; LANG: string; TEST_USER_MFA: string; XPC_FLAGS: string; npm_package_version: string; XPC_SERVICE_NAME: string; BUN_INTERNAL_BUNX_INSTALL: string; SHLVL: string; HOME: string; ZSH_CACHE_DIR: string; HOMEBREW_PREFIX: string; LOCIZE_PROJECT_ID: string; LOGNAME: string; npm_lifecycle_script: string; ALACRITTY_WINDOW_ID: string; ZED_TERM: string; NVM_BIN: string; BUN_INSTALL: string; npm_config_user_agent: string; INFOPATH: string; HOMEBREW_CELLAR: string; COGNITO_USERPOOL_ID: string; _P9K_SSH_TTY: string; TEST_USER_EMAIL: string; OSLogRateLimit: string; SECURITYSESSIONID: string; npm_node_execpath: string; COLORTERM: 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; } }