UNPKG

@react-native-firebase/remote-config

Version:

React Native Firebase - React Native Firebase provides native integration with Remote Config, allowing you to change the appearance and/or functionality of your app without requiring an app update.

16 lines 498 B
import type { Value } from './types/remote-config'; interface ConfigValueInit { value: string; source: ReturnType<Value['getSource']>; } export default class RemoteConfigValue implements Value { private readonly _value; private readonly _source; constructor({ value, source }: ConfigValueInit); asBoolean(): boolean; asNumber(): number; asString(): string; getSource(): ReturnType<Value['getSource']>; } export {}; //# sourceMappingURL=RemoteConfigValue.d.ts.map