yolkbot
    Preparing search index...

    Interface FirebaseAuthResponse

    A successful Firebase authentication response

    interface FirebaseAuthResponse {
        idToken: string;
        localId: string;
        ok: true;
        refreshToken: string;
    }
    Index

    Properties

    idToken: string

    The ID token that expires shortly. This is only needed if you're making direct calls to the Firebase API soon

    localId: string

    The account's "local" firebase ID

    ok: true

    Whether or not the authentication succeeded

    refreshToken: string

    A refresh token for the account that may be used to login ANYTIME later using Bot.loginWithRefreshToken