问题 I am writing a firebase function. And in there, I need a default value. And since I set up a Remote Config in Firebase, I try to use it inside my firebase function (to have one source of truth as for the default-values) Using the following code to retrieve a remoteConfig-parameter, how can you convert it to a typescript number ? const remoteConfigTemplate = await admin.remoteConfig().getTemplate(); const defaultVal = remoteConfigTemplate.parameters["video_max_duration"].defaultValue const