Interface AuthenticationProvider

interface AuthenticationProvider {
    getAuthenticationInfo(): Promise<AuthenticationInfo>;
    reset(): void;
}

Implemented by

Methods

  • Generates and returns authentication information.

    Returns Promise<AuthenticationInfo>

    authentication information.

  • Resets internal state and releases any associated resources.

    Returns void