(key: string)
| 32 | * @param key The parameter key in Remote Config |
| 33 | */ |
| 34 | export function useRemoteConfigValue(key: string): ObservableStatus<RemoteConfigValue> { |
| 35 | return useRemoteConfigValue_INTERNAL<RemoteConfigValue>(key, getValue); |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Convience method similar to useRemoteConfigValue. Returns a `string` from a Remote Config parameter. |
nothing calls this directly
no test coverage detected