@auth0/auth0-angular
    Preparing search index...

    Interface AppState

    Angular specific state to be stored before redirect and any account that the user may have connected to.

    interface AppState {
        connectedAccount?: ConnectedAccount;
        response_type?: ResponseType;
        target?: string;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any

      Any custom parameter to be stored in appState

    Index

    Properties

    connectedAccount?: ConnectedAccount

    The connected account information when the user has completed a connect account flow.

    response_type?: ResponseType

    The response type returned from the authentication server.

    target?: string

    Target path the app gets routed to after handling the callback from Auth0 (defaults to '/')