Type alias TFirebaseConfig

TFirebaseConfig: {
    apiKey: string;
    appId: string;
    authDomain: string;
    measurementId: string;
    messagingSenderId: string;
    projectId: string;
    storageBucket: string;
}

Type declaration

  • apiKey: string

    Description

    The API key used for authenticating requests from the app.

  • appId: string

    Description

    The unique identifier for the Firebase application.

  • authDomain: string

    Description

    The domain used for Firebase Authentication.

  • measurementId: string

    Description

    The identifier for Google Analytics for Firebase.

  • messagingSenderId: string

    Description

    The sender ID for Firebase Cloud Messaging.

  • projectId: string

    Description

    The globally unique identifier for the Firebase project.

  • storageBucket: string

    Description

    The Google Cloud Storage bucket for Firebase Storage.

Description

Represents the configuration settings for a Firebase application.

This type defines the necessary parameters to configure and initialize a Firebase application. It includes details for various Firebase services such as Authentication, Firestore, Analytics, and others.

Generated using TypeDoc