You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
interfaceMyAwesomeRemoteConfigParameter{buttonColor: "blue"|"red";autoDestruction: boolean;}const{data: myParam}=useRemoteConfigValue<MyAwesomeRemoteConfigParameter>("my_awesome_remote_config_parameter");// myParam is parsed with MyAwesomeRemoteConfigParameter interface
The text was updated successfully, but these errors were encountered:
When using JSON in remote config parameter, we have to parse by ourselves the JSON, could be cleaner with generic type?
Current usage
Desired usage
The text was updated successfully, but these errors were encountered: