ReactFire reference docs / remote-config
- useRemoteConfigAll
- useRemoteConfigBoolean
- useRemoteConfigNumber
- useRemoteConfigString
- useRemoteConfigValue
▸ useRemoteConfigAll(key
): ObservableStatus
<AllParameters
>
Convience method similar to useRemoteConfigValue. Returns allRemote Config parameters.
Name | Type | Description |
---|---|---|
key |
string |
The parameter key in Remote Config |
ObservableStatus
<AllParameters
>
▸ useRemoteConfigBoolean(key
): ObservableStatus
<boolean
>
Convience method similar to useRemoteConfigValue. Returns a boolean
from a Remote Config parameter.
Name | Type | Description |
---|---|---|
key |
string |
The parameter key in Remote Config |
ObservableStatus
<boolean
>
▸ useRemoteConfigNumber(key
): ObservableStatus
<number
>
Convience method similar to useRemoteConfigValue. Returns a number
from a Remote Config parameter.
Name | Type | Description |
---|---|---|
key |
string |
The parameter key in Remote Config |
ObservableStatus
<number
>
▸ useRemoteConfigString(key
): ObservableStatus
<string
>
Convience method similar to useRemoteConfigValue. Returns a string
from a Remote Config parameter.
Name | Type | Description |
---|---|---|
key |
string |
The parameter key in Remote Config |
ObservableStatus
<string
>
▸ useRemoteConfigValue(key
): ObservableStatus
<RemoteConfigValue
>
Accepts a key and optionally a Remote Config instance. Returns a Remote Config Value.
Name | Type | Description |
---|---|---|
key |
string |
The parameter key in Remote Config |
ObservableStatus
<RemoteConfigValue
>