Type alias TToken

TToken: {
    _tokenResponse: {
        oauthIdToken: string;
    };
} & Object

Type declaration

  • _tokenResponse: {
        oauthIdToken: string;
    }

    Description

    An object containing the OAuth ID token.

    • oauthIdToken: string

      Description

      The OAuth ID token.

Description

Represents a token structure with additional properties. This type is primarily used for authentication purposes, containing a token response and possibly other object properties.

Generated using TypeDoc