React Native Firebase
    Preparing search index...

    Observer interface for receiving real-time Remote Config update notifications.

    NOTE: Although an complete callback can be provided, it will never be called because the ConfigUpdate stream is never-ending.

    interface ConfigUpdateObserver {
        complete: () => void;
        error: (error: FirebaseError) => void;
        next: (configUpdate: ConfigUpdate) => void;
    }
    Index

    Properties

    Properties

    complete: () => void

    Called when the stream is gracefully terminated.

    error: (error: FirebaseError) => void

    Called if an error occurs during the stream.

    next: (configUpdate: ConfigUpdate) => void

    Called when a new ConfigUpdate is available.