Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 | // this file is generated — do not edit it /// <reference types="@sveltejs/kit" /> /** * 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://kit.svelte.dev/docs/modules#$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://kit.svelte.dev/docs/configuration#env) _and do_ start with [`config.kit.env.privatePrefix`](https://kit.svelte.dev/docs/configuration#env) (if configured). * * _Unlike_ [`$env/dynamic/private`](https://kit.svelte.dev/docs/modules#$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: * * ```bash * MY_FEATURE_FLAG="enabled" npm run dev * ``` */ declare module '$env/static/private' { export const VITE_API_URL: string; export const VITE_API_TOKEN: string; export const CI_SERVER_REVISION: string; export const FF_USE_WINDOWS_LEGACY_PROCESS_STRATEGY: string; export const GITLAB_USER_LOGIN: string; export const CI_COMMIT_SHORT_SHA: string; export const GITHUB_TOKEN: string; export const FF_SCRIPT_SECTIONS: string; export const CI_SERVER_VERSION_PATCH: string; export const FF_POSIXLY_CORRECT_ESCAPES: string; export const CI_DEPENDENCY_PROXY_PASSWORD: string; export const GIT_CLONE_PATH: string; export const CI_DEPENDENCY_PROXY_SERVER: string; export const npm_package_dependencies_mvp_css: string; export const FF_USE_DUMB_INIT_WITH_KUBERNETES_EXECUTOR: string; export const NX_WORKSPACE_ROOT: string; export const npm_config_user_agent: string; export const CI_PROJECT_NAME: string; export const CI_SERVER_PROTOCOL: string; export const FF_USE_LEGACY_KUBERNETES_EXECUTION_STRATEGY: string; export const CI_RUNNER_REVISION: string; export const FF_LOG_IMAGES_CONFIGURED_FOR_JOB: string; export const CI: string; export const NODE_VERSION: string; export const HOSTNAME: string; export const YARN_VERSION: string; export const ARTIFACT_COMPRESSION_LEVEL: string; export const CI_COMMIT_DESCRIPTION: string; export const CI_JOB_STAGE: string; export const CI_PROJECT_DESCRIPTION: string; export const npm_package_devDependencies__sveltejs_vite_plugin_svelte: string; export const npm_package_devDependencies_vite: string; export const npm_node_execpath: string; export const CI_SERVER_VERSION: string; export const SHLVL: string; export const CI_DEPENDENCY_PROXY_USER: string; export const DOCKER_AUTH_CONFIG: string; export const npm_package_scripts_docker_start: string; export const FF_DISABLE_POWERSHELL_STDIN: string; export const HOME: string; export const CI_PROJECT_ROOT_NAMESPACE: string; export const FF_CLEAN_UP_FAILED_CACHE_EXTRACT: string; export const OLDPWD: string; export const npm_package_devDependencies__typescript_eslint_parser: string; export const npm_config_verify_store_integrity: string; export const FF_NETWORK_PER_BUILD: string; export const CI_COMMIT_REF_NAME: string; export const CI_SERVER_HOST: string; export const CI_JOB_ID: string; export const npm_package_devDependencies_eslint_config_prettier: string; export const CI_RUNNER_VERSION: string; export const CI_PIPELINE_SOURCE: string; export const FF_RESOLVE_FULL_TLS_CHAIN: string; export const npm_package_devDependencies__sveltejs_adapter_static: string; export const npm_package_devDependencies_svelte_preprocess: string; export const npm_config_auto_install_peers: string; export const FF_SKIP_NOOP_BUILD_STAGES: string; export const SONAR_HOST_URL: string; export const CI_DEFAULT_BRANCH: string; export const CI_BUILDS_DIR: string; export const CI_SERVER_VERSION_MAJOR: string; export const FF_USE_FASTZIP: string; export const npm_package_devDependencies_svelte_check: string; export const npm_package_dependencies__swc_helpers: string; export const CI_REGISTRY_PASSWORD: string; export const CI_COMMIT_REF_PROTECTED: string; export const REGISTRY_PASSWD: string; export const CI_SERVER_URL: string; export const CI_TEMPLATE_REGISTRY_HOST: string; export const npm_package_scripts_check: string; export const GITLAB_RELEASE_KEY: string; export const GITLAB_FEATURES: string; export const SONAR_TOKEN: string; export const CI_PROJECT_ID: string; export const npm_package_keywords_0: string; export const npm_config_engine_strict: string; export const GIT_CLEAN_FLAGS: string; export const CI_COMMIT_SHA: string; export const GITLAB_CI: string; export const npm_package_description: string; export const npm_package_devDependencies_typescript: string; export const FF_RETRIEVE_POD_WARNING_EVENTS: string; export const CI_CONCURRENT_ID: string; export const CI_REGISTRY_USER: string; export const FF_USE_DOCKER_AUTOSCALER_DIAL_STDIO: string; export const CI_SERVER_PORT: string; export const FF_DISABLE_UMASK_FOR_DOCKER_EXECUTOR: string; export const npm_package_scripts_dev: string; export const npm_package_devDependencies_prettier: string; export const npm_package_dependencies_svelte: string; export const CI_PROJECT_PATH: string; export const CI_PROJECT_DIR: string; export const FORCE_COLOR: string; export const npm_package_dependencies__jga_ui_buttons: string; export const npm_package_type: string; export const CI_PROJECT_NAMESPACE: string; export const PACKAGE_REGISTRY_TOKEN: string; export const FF_ENABLE_JOB_CLEANUP: string; export const CI_COMMIT_TIMESTAMP: string; export const DOCKER_DRIVER: string; export const _: string; export const npm_package_private: string; export const npm_package_scripts_check_watch: string; export const CI_SERVER_NAME: string; export const CI_PIPELINE_TRIGGERED: string; export const FF_USE_DIRECT_DOWNLOAD: string; export const CI_JOB_TOKEN: string; export const FF_USE_DYNAMIC_TRACE_FORCE_SEND_INTERVAL: string; export const CI_NODE_TOTAL: string; export const npm_package_scripts_lint: string; export const npm_package_devDependencies__typescript_eslint_eslint_plugin: string; export const npm_package_dependencies_buttono: string; export const npm_config_registry: string; export const CI_PROJECT_NAMESPACE_ID: string; export const TEST_AUTH_PASSWORD: string; export const CI_PIPELINE_CREATED_AT: string; export const CI_JOB_NAME_SLUG: string; export const RUNNER_TEMP_PROJECT_DIR: string; export const GIT_STRATEGY: string; export const CI_CONCURRENT_PROJECT_ID: string; export const FF_USE_IMPROVED_URL_MASKING: string; export const NX_TASK_HASH: string; export const npm_package_devDependencies_eslint_plugin_svelte3: string; export const TRANSFER_METER_FREQUENCY: string; export const CI_PIPELINE_URL: string; export const CACHE_COMPRESSION_LEVEL: string; export const FF_KUBERNETES_HONOR_ENTRYPOINT: string; export const npm_config_node_gyp: string; export const PATH: string; export const CI_RUNNER_DESCRIPTION: string; export const GIT_SSL_NO_VERIFY: string; export const CI_SERVER_VERSION_MINOR: string; export const CI_JOB_STARTED_AT: string; export const npm_package_name: string; export const npm_package_scripts_package: string; export const npm_config_store_dir: string; export const NODE: string; export const GITLAB_USER_EMAIL: string; export const FF_USE_NEW_BASH_EVAL_STRATEGY: string; export const CI_PROJECT_VISIBILITY: string; export const CI_COMMIT_TITLE: string; export const CI_PROJECT_TITLE: string; export const LERNA_PACKAGE_NAME: string; export const npm_config_frozen_lockfile: string; export const CI_SERVER: string; export const FF_USE_GIT_BUNDLE_URIS: string; export const FF_CMD_DISABLE_DELAYED_ERROR_LEVEL_EXPANSION: string; export const CI_PAGES_URL: string; export const CI_PROJECT_REPOSITORY_LANGUAGES: string; export const npm_package_devDependencies_eslint: string; export const FF_SET_PERMISSIONS_BEFORE_CLEANUP: string; export const GITLAB_PREPARE_KEY: string; export const FF_PRINT_POD_EVENTS: string; export const RENOVATE_TOKEN: string; export const CI_COMMIT_AUTHOR: string; export const SONAR_USER_HOME: string; export const npm_lifecycle_script: string; export const CI_RUNNER_SHORT_TOKEN: string; export const CI_PAGES_DOMAIN: string; export const CI_JOB_IMAGE: string; export const npm_package_devDependencies__sveltejs_kit: string; export const CI_PIPELINE_NAME: string; export const CI_JOB_TIMEOUT: string; export const CI_REPOSITORY_URL: string; export const GITLAB_ENV: string; export const CI_COMMIT_BRANCH: string; export const CI_PROJECT_CLASSIFICATION_LABEL: string; export const NODE_PATH: string; export const npm_package_version: string; export const npm_lifecycle_event: string; export const FF_USE_POWERSHELL_PATH_RESOLVER: string; export const CI_API_GRAPHQL_URL: string; export const CI_RUNNER_ID: string; export const LHCI_HTTP_PASSWORD: string; export const NX_CLI_SET: string; export const npm_package_scripts_build: string; export const npm_package_devDependencies_tslib: string; export const npm_config_strict_peer_dependencies: string; export const CI_API_V4_URL: string; export const CI_DEPENDENCY_PROXY_DIRECT_GROUP_IMAGE_PREFIX: string; export const DOCKER_TLS_CERTDIR: string; export const CI_JOB_JWT_V1: string; export const GITLAB_USER_NAME: string; export const npm_package_author: string; export const CI_JOB_JWT_V2: string; export const CI_PIPELINE_IID: string; export const NX_TASK_TARGET_TARGET: string; export const CI_RUNNER_EXECUTABLE_ARCH: string; export const FF_USE_POD_ACTIVE_DEADLINE_SECONDS: string; export const FF_USE_ADVANCED_POD_SPEC_CONFIGURATION: string; export const CI_SERVER_SHELL_SSH_HOST: string; export const CI_JOB_URL: string; export const NX_LOAD_DOT_ENV_FILES: string; export const npm_package_license: string; export const FF_USE_INIT_WITH_DOCKER_EXECUTOR: string; export const SSH_PRIVATE_KEY: string; export const LHCI_HTTP_USER: string; export const NX_TASK_TARGET_PROJECT: string; export const npm_package_scripts_format: string; export const CI_COMMIT_REF_SLUG: string; export const PWD: string; export const GITLAB_PRIVATE_TOKEN: string; export const CI_DISPOSABLE_ENVIRONMENT: string; export const CI_JOB_JWT: string; export const npm_package_dependencies__jga_ui_base: string; export const npm_execpath: string; export const CI_RUNNER_TAGS: string; export const FF_USE_NEW_SHELL_ESCAPE: string; export const FF_SECRET_RESOLVING_FAILS_IF_MISSING: string; export const CI_PIPELINE_ID: string; export const CI_SERVER_TLS_CA_FILE: string; export const CI_PROJECT_PATH_SLUG: string; export const CI_COMMIT_BEFORE_SHA: string; export const CI_CONFIG_PATH: string; export const CI_PROJECT_URL: string; export const npm_package_devDependencies__sveltejs_adapter_auto: string; export const npm_command: string; export const PNPM_SCRIPT_SRC_DIR: string; export const TRIGGER_PAYLOAD: string; export const TZ: string; export const CI_COMMIT_MESSAGE: string; export const npm_package_scripts_preview: string; export const npm_package_devDependencies_prettier_plugin_svelte: string; export const GITLAB_USER_ID: string; export const CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX: string; export const FF_ENABLE_BASH_EXIT_CODE_CHECK: string; export const CI_JOB_NAME: string; export const CI_JOB_STATUS: string; export const CI_SERVER_SHELL_SSH_PORT: string; export const INIT_CWD: string; export const NODE_ENV: string; } /** * Similar to [`$env/static/private`](https://kit.svelte.dev/docs/modules#$env-static-private), except that it only includes environment variables that begin with [`config.kit.env.publicPrefix`](https://kit.svelte.dev/docs/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://kit.svelte.dev/docs/cli)), this is equivalent to `process.env`. This module only includes variables that _do not_ begin with [`config.kit.env.publicPrefix`](https://kit.svelte.dev/docs/configuration#env) _and do_ start with [`config.kit.env.privatePrefix`](https://kit.svelte.dev/docs/configuration#env) (if configured). * * This module cannot be imported into client-side code. * * Dynamic environment variables cannot be used during prerendering. * * ```ts * import { env } from '$env/dynamic/private'; * console.log(env.DEPLOYMENT_SPECIFIC_VARIABLE); * ``` * * > 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: { VITE_API_URL: string; VITE_API_TOKEN: string; CI_SERVER_REVISION: string; FF_USE_WINDOWS_LEGACY_PROCESS_STRATEGY: string; GITLAB_USER_LOGIN: string; CI_COMMIT_SHORT_SHA: string; GITHUB_TOKEN: string; FF_SCRIPT_SECTIONS: string; CI_SERVER_VERSION_PATCH: string; FF_POSIXLY_CORRECT_ESCAPES: string; CI_DEPENDENCY_PROXY_PASSWORD: string; GIT_CLONE_PATH: string; CI_DEPENDENCY_PROXY_SERVER: string; npm_package_dependencies_mvp_css: string; FF_USE_DUMB_INIT_WITH_KUBERNETES_EXECUTOR: string; NX_WORKSPACE_ROOT: string; npm_config_user_agent: string; CI_PROJECT_NAME: string; CI_SERVER_PROTOCOL: string; FF_USE_LEGACY_KUBERNETES_EXECUTION_STRATEGY: string; CI_RUNNER_REVISION: string; FF_LOG_IMAGES_CONFIGURED_FOR_JOB: string; CI: string; NODE_VERSION: string; HOSTNAME: string; YARN_VERSION: string; ARTIFACT_COMPRESSION_LEVEL: string; CI_COMMIT_DESCRIPTION: string; CI_JOB_STAGE: string; CI_PROJECT_DESCRIPTION: string; npm_package_devDependencies__sveltejs_vite_plugin_svelte: string; npm_package_devDependencies_vite: string; npm_node_execpath: string; CI_SERVER_VERSION: string; SHLVL: string; CI_DEPENDENCY_PROXY_USER: string; DOCKER_AUTH_CONFIG: string; npm_package_scripts_docker_start: string; FF_DISABLE_POWERSHELL_STDIN: string; HOME: string; CI_PROJECT_ROOT_NAMESPACE: string; FF_CLEAN_UP_FAILED_CACHE_EXTRACT: string; OLDPWD: string; npm_package_devDependencies__typescript_eslint_parser: string; npm_config_verify_store_integrity: string; FF_NETWORK_PER_BUILD: string; CI_COMMIT_REF_NAME: string; CI_SERVER_HOST: string; CI_JOB_ID: string; npm_package_devDependencies_eslint_config_prettier: string; CI_RUNNER_VERSION: string; CI_PIPELINE_SOURCE: string; FF_RESOLVE_FULL_TLS_CHAIN: string; npm_package_devDependencies__sveltejs_adapter_static: string; npm_package_devDependencies_svelte_preprocess: string; npm_config_auto_install_peers: string; FF_SKIP_NOOP_BUILD_STAGES: string; SONAR_HOST_URL: string; CI_DEFAULT_BRANCH: string; CI_BUILDS_DIR: string; CI_SERVER_VERSION_MAJOR: string; FF_USE_FASTZIP: string; npm_package_devDependencies_svelte_check: string; npm_package_dependencies__swc_helpers: string; CI_REGISTRY_PASSWORD: string; CI_COMMIT_REF_PROTECTED: string; REGISTRY_PASSWD: string; CI_SERVER_URL: string; CI_TEMPLATE_REGISTRY_HOST: string; npm_package_scripts_check: string; GITLAB_RELEASE_KEY: string; GITLAB_FEATURES: string; SONAR_TOKEN: string; CI_PROJECT_ID: string; npm_package_keywords_0: string; npm_config_engine_strict: string; GIT_CLEAN_FLAGS: string; CI_COMMIT_SHA: string; GITLAB_CI: string; npm_package_description: string; npm_package_devDependencies_typescript: string; FF_RETRIEVE_POD_WARNING_EVENTS: string; CI_CONCURRENT_ID: string; CI_REGISTRY_USER: string; FF_USE_DOCKER_AUTOSCALER_DIAL_STDIO: string; CI_SERVER_PORT: string; FF_DISABLE_UMASK_FOR_DOCKER_EXECUTOR: string; npm_package_scripts_dev: string; npm_package_devDependencies_prettier: string; npm_package_dependencies_svelte: string; CI_PROJECT_PATH: string; CI_PROJECT_DIR: string; FORCE_COLOR: string; npm_package_dependencies__jga_ui_buttons: string; npm_package_type: string; CI_PROJECT_NAMESPACE: string; PACKAGE_REGISTRY_TOKEN: string; FF_ENABLE_JOB_CLEANUP: string; CI_COMMIT_TIMESTAMP: string; DOCKER_DRIVER: string; _: string; npm_package_private: string; npm_package_scripts_check_watch: string; CI_SERVER_NAME: string; CI_PIPELINE_TRIGGERED: string; FF_USE_DIRECT_DOWNLOAD: string; CI_JOB_TOKEN: string; FF_USE_DYNAMIC_TRACE_FORCE_SEND_INTERVAL: string; CI_NODE_TOTAL: string; npm_package_scripts_lint: string; npm_package_devDependencies__typescript_eslint_eslint_plugin: string; npm_package_dependencies_buttono: string; npm_config_registry: string; CI_PROJECT_NAMESPACE_ID: string; TEST_AUTH_PASSWORD: string; CI_PIPELINE_CREATED_AT: string; CI_JOB_NAME_SLUG: string; RUNNER_TEMP_PROJECT_DIR: string; GIT_STRATEGY: string; CI_CONCURRENT_PROJECT_ID: string; FF_USE_IMPROVED_URL_MASKING: string; NX_TASK_HASH: string; npm_package_devDependencies_eslint_plugin_svelte3: string; TRANSFER_METER_FREQUENCY: string; CI_PIPELINE_URL: string; CACHE_COMPRESSION_LEVEL: string; FF_KUBERNETES_HONOR_ENTRYPOINT: string; npm_config_node_gyp: string; PATH: string; CI_RUNNER_DESCRIPTION: string; GIT_SSL_NO_VERIFY: string; CI_SERVER_VERSION_MINOR: string; CI_JOB_STARTED_AT: string; npm_package_name: string; npm_package_scripts_package: string; npm_config_store_dir: string; NODE: string; GITLAB_USER_EMAIL: string; FF_USE_NEW_BASH_EVAL_STRATEGY: string; CI_PROJECT_VISIBILITY: string; CI_COMMIT_TITLE: string; CI_PROJECT_TITLE: string; LERNA_PACKAGE_NAME: string; npm_config_frozen_lockfile: string; CI_SERVER: string; FF_USE_GIT_BUNDLE_URIS: string; FF_CMD_DISABLE_DELAYED_ERROR_LEVEL_EXPANSION: string; CI_PAGES_URL: string; CI_PROJECT_REPOSITORY_LANGUAGES: string; npm_package_devDependencies_eslint: string; FF_SET_PERMISSIONS_BEFORE_CLEANUP: string; GITLAB_PREPARE_KEY: string; FF_PRINT_POD_EVENTS: string; RENOVATE_TOKEN: string; CI_COMMIT_AUTHOR: string; SONAR_USER_HOME: string; npm_lifecycle_script: string; CI_RUNNER_SHORT_TOKEN: string; CI_PAGES_DOMAIN: string; CI_JOB_IMAGE: string; npm_package_devDependencies__sveltejs_kit: string; CI_PIPELINE_NAME: string; CI_JOB_TIMEOUT: string; CI_REPOSITORY_URL: string; GITLAB_ENV: string; CI_COMMIT_BRANCH: string; CI_PROJECT_CLASSIFICATION_LABEL: string; NODE_PATH: string; npm_package_version: string; npm_lifecycle_event: string; FF_USE_POWERSHELL_PATH_RESOLVER: string; CI_API_GRAPHQL_URL: string; CI_RUNNER_ID: string; LHCI_HTTP_PASSWORD: string; NX_CLI_SET: string; npm_package_scripts_build: string; npm_package_devDependencies_tslib: string; npm_config_strict_peer_dependencies: string; CI_API_V4_URL: string; CI_DEPENDENCY_PROXY_DIRECT_GROUP_IMAGE_PREFIX: string; DOCKER_TLS_CERTDIR: string; CI_JOB_JWT_V1: string; GITLAB_USER_NAME: string; npm_package_author: string; CI_JOB_JWT_V2: string; CI_PIPELINE_IID: string; NX_TASK_TARGET_TARGET: string; CI_RUNNER_EXECUTABLE_ARCH: string; FF_USE_POD_ACTIVE_DEADLINE_SECONDS: string; FF_USE_ADVANCED_POD_SPEC_CONFIGURATION: string; CI_SERVER_SHELL_SSH_HOST: string; CI_JOB_URL: string; NX_LOAD_DOT_ENV_FILES: string; npm_package_license: string; FF_USE_INIT_WITH_DOCKER_EXECUTOR: string; SSH_PRIVATE_KEY: string; LHCI_HTTP_USER: string; NX_TASK_TARGET_PROJECT: string; npm_package_scripts_format: string; CI_COMMIT_REF_SLUG: string; PWD: string; GITLAB_PRIVATE_TOKEN: string; CI_DISPOSABLE_ENVIRONMENT: string; CI_JOB_JWT: string; npm_package_dependencies__jga_ui_base: string; npm_execpath: string; CI_RUNNER_TAGS: string; FF_USE_NEW_SHELL_ESCAPE: string; FF_SECRET_RESOLVING_FAILS_IF_MISSING: string; CI_PIPELINE_ID: string; CI_SERVER_TLS_CA_FILE: string; CI_PROJECT_PATH_SLUG: string; CI_COMMIT_BEFORE_SHA: string; CI_CONFIG_PATH: string; CI_PROJECT_URL: string; npm_package_devDependencies__sveltejs_adapter_auto: string; npm_command: string; PNPM_SCRIPT_SRC_DIR: string; TRIGGER_PAYLOAD: string; TZ: string; CI_COMMIT_MESSAGE: string; npm_package_scripts_preview: string; npm_package_devDependencies_prettier_plugin_svelte: string; GITLAB_USER_ID: string; CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX: string; FF_ENABLE_BASH_EXIT_CODE_CHECK: string; CI_JOB_NAME: string; CI_JOB_STATUS: string; CI_SERVER_SHELL_SSH_PORT: string; INIT_CWD: string; NODE_ENV: string; [key: `PUBLIC_${string}`]: undefined; [key: `${string}`]: string | undefined; } } /** * Similar to [`$env/dynamic/private`](https://kit.svelte.dev/docs/modules#$env-dynamic-private), but only includes variables that begin with [`config.kit.env.publicPrefix`](https://kit.svelte.dev/docs/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. * * Dynamic environment variables cannot be used during prerendering. * * ```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; } } |