1616
1717### useRemoteConfigAll
1818
19- ▸ ** useRemoteConfigAll** (` key ` : * string* , ` remoteConfig? ` : RemoteConfig ): [ * ObservableStatus* ] ( ../interfaces/useobservable.observablestatus.md ) <[ * AllParameters* ] ( remote_config_getvalue.md#allparameters ) \>
19+ ▸ ** useRemoteConfigAll** (` key ` : * string* ): [ * ObservableStatus* ] ( ../interfaces/useobservable.observablestatus.md ) <[ * AllParameters* ] ( remote_config_getvalue.md#allparameters ) \>
2020
2121Convience method similar to useRemoteConfigValue. Returns allRemote Config parameters.
2222
@@ -25,17 +25,16 @@ Convience method similar to useRemoteConfigValue. Returns allRemote Config param
2525| Name | Type | Description |
2626| :------ | :------ | :------ |
2727| ` key ` | * string* | The parameter key in Remote Config |
28- | ` remoteConfig? ` | RemoteConfig | Optional instance. If not provided ReactFire will either grab the default instance or lazy load. |
2928
3029** Returns:** [ * ObservableStatus* ] ( ../interfaces/useobservable.observablestatus.md ) <[ * AllParameters* ] ( remote_config_getvalue.md#allparameters ) \>
3130
32- Defined in: [ src/remote-config/index.tsx:79 ] ( https://github.com/FirebaseExtended/reactfire/blob/main/src/remote-config/index.tsx#L79 )
31+ Defined in: [ src/remote-config/index.tsx:78 ] ( https://github.com/FirebaseExtended/reactfire/blob/main/src/remote-config/index.tsx#L78 )
3332
3433___
3534
3635### useRemoteConfigBoolean
3736
38- ▸ ** useRemoteConfigBoolean** (` key ` : * string* , ` remoteConfig? ` : RemoteConfig ): [ * ObservableStatus* ] ( ../interfaces/useobservable.observablestatus.md ) <boolean\>
37+ ▸ ** useRemoteConfigBoolean** (` key ` : * string* ): [ * ObservableStatus* ] ( ../interfaces/useobservable.observablestatus.md ) <boolean\>
3938
4039Convience method similar to useRemoteConfigValue. Returns a ` boolean ` from a Remote Config parameter.
4140
@@ -44,17 +43,16 @@ Convience method similar to useRemoteConfigValue. Returns a `boolean` from a Rem
4443| Name | Type | Description |
4544| :------ | :------ | :------ |
4645| ` key ` | * string* | The parameter key in Remote Config |
47- | ` remoteConfig? ` | RemoteConfig | Optional instance. If not provided ReactFire will either grab the default instance or lazy load. |
4846
4947** Returns:** [ * ObservableStatus* ] ( ../interfaces/useobservable.observablestatus.md ) <boolean\>
5048
51- Defined in: [ src/remote-config/index.tsx:70 ] ( https://github.com/FirebaseExtended/reactfire/blob/main/src/remote-config/index.tsx#L70 )
49+ Defined in: [ src/remote-config/index.tsx:69 ] ( https://github.com/FirebaseExtended/reactfire/blob/main/src/remote-config/index.tsx#L69 )
5250
5351___
5452
5553### useRemoteConfigNumber
5654
57- ▸ ** useRemoteConfigNumber** (` key ` : * string* , ` remoteConfig? ` : RemoteConfig ): [ * ObservableStatus* ] ( ../interfaces/useobservable.observablestatus.md ) <number\>
55+ ▸ ** useRemoteConfigNumber** (` key ` : * string* ): [ * ObservableStatus* ] ( ../interfaces/useobservable.observablestatus.md ) <number\>
5856
5957Convience method similar to useRemoteConfigValue. Returns a ` number ` from a Remote Config parameter.
6058
@@ -63,17 +61,16 @@ Convience method similar to useRemoteConfigValue. Returns a `number` from a Remo
6361| Name | Type | Description |
6462| :------ | :------ | :------ |
6563| ` key ` | * string* | The parameter key in Remote Config |
66- | ` remoteConfig? ` | RemoteConfig | Optional instance. If not provided ReactFire will either grab the default instance or lazy load. |
6764
6865** Returns:** [ * ObservableStatus* ] ( ../interfaces/useobservable.observablestatus.md ) <number\>
6966
70- Defined in: [ src/remote-config/index.tsx:61 ] ( https://github.com/FirebaseExtended/reactfire/blob/main/src/remote-config/index.tsx#L61 )
67+ Defined in: [ src/remote-config/index.tsx:60 ] ( https://github.com/FirebaseExtended/reactfire/blob/main/src/remote-config/index.tsx#L60 )
7168
7269___
7370
7471### useRemoteConfigString
7572
76- ▸ ** useRemoteConfigString** (` key ` : * string* , ` remoteConfig? ` : RemoteConfig ): [ * ObservableStatus* ] ( ../interfaces/useobservable.observablestatus.md ) <string\>
73+ ▸ ** useRemoteConfigString** (` key ` : * string* ): [ * ObservableStatus* ] ( ../interfaces/useobservable.observablestatus.md ) <string\>
7774
7875Convience method similar to useRemoteConfigValue. Returns a ` string ` from a Remote Config parameter.
7976
@@ -82,17 +79,16 @@ Convience method similar to useRemoteConfigValue. Returns a `string` from a Remo
8279| Name | Type | Description |
8380| :------ | :------ | :------ |
8481| ` key ` | * string* | The parameter key in Remote Config |
85- | ` remoteConfig? ` | RemoteConfig | Optional instance. If not provided ReactFire will either grab the default instance or lazy load. |
8682
8783** Returns:** [ * ObservableStatus* ] ( ../interfaces/useobservable.observablestatus.md ) <string\>
8884
89- Defined in: [ src/remote-config/index.tsx:52 ] ( https://github.com/FirebaseExtended/reactfire/blob/main/src/remote-config/index.tsx#L52 )
85+ Defined in: [ src/remote-config/index.tsx:51 ] ( https://github.com/FirebaseExtended/reactfire/blob/main/src/remote-config/index.tsx#L51 )
9086
9187___
9288
9389### useRemoteConfigValue
9490
95- ▸ ** useRemoteConfigValue** (` key ` : * string* , ` remoteConfig? ` : RemoteConfig ): [ * ObservableStatus* ] ( ../interfaces/useobservable.observablestatus.md ) <RemoteConfigValue\>
91+ ▸ ** useRemoteConfigValue** (` key ` : * string* ): [ * ObservableStatus* ] ( ../interfaces/useobservable.observablestatus.md ) <RemoteConfigValue\>
9692
9793Accepts a key and optionally a Remote Config instance. Returns a
9894Remote Config Value.
@@ -102,8 +98,7 @@ Remote Config Value.
10298| Name | Type | Description |
10399| :------ | :------ | :------ |
104100| ` key ` | * string* | The parameter key in Remote Config |
105- | ` remoteConfig? ` | RemoteConfig | Optional instance. If not provided ReactFire will either grab the default instance or lazy load. |
106101
107102** Returns:** [ * ObservableStatus* ] ( ../interfaces/useobservable.observablestatus.md ) <RemoteConfigValue\>
108103
109- Defined in: [ src/remote-config/index.tsx:43 ] ( https://github.com/FirebaseExtended/reactfire/blob/main/src/remote-config/index.tsx#L43 )
104+ Defined in: [ src/remote-config/index.tsx:42 ] ( https://github.com/FirebaseExtended/reactfire/blob/main/src/remote-config/index.tsx#L42 )
0 commit comments