Function: getEnvVar()
getEnvVar<
K>(key:K):KnownEnvironmentVariables[K] |undefined
Defined in: shared/utils/environment.ts:29
Type-safe environment variable access utility. Avoids index signature issues with process.env.
Type Parametersโ
Kโ
K extends keyof KnownEnvironmentVariables
Parametersโ
keyโ
K
The environment variable key to access
Returnsโ
KnownEnvironmentVariables[K] | undefined
The environment variable value or undefined