(key: keyof RemoteConfigProfile)
| 166 | } |
| 167 | |
| 168 | export function getRemoteConfigEnvNames(key: keyof RemoteConfigProfile): string[] { |
| 169 | const spec = getRemoteConfigFieldSpec(key); |
| 170 | if (spec?.env === false) return []; |
| 171 | return [buildPrimaryEnvVarName(key)]; |
| 172 | } |
no test coverage detected