(value: string, envVars: Record<string, string>)
| 407 | } |
| 408 | |
| 409 | function resolveEnvVars(value: string, envVars: Record<string, string>): string { |
| 410 | return resolveEnvVarReferences(value, envVars) as string |
| 411 | } |
| 412 | |
| 413 | /** True when any string value in the provider config contains an env-var reference (`{{VAR}}`). */ |
| 414 | function providerConfigReferencesEnvVars(config: Record<string, unknown>): boolean { |
no test coverage detected