Interface AuthenticationSession

interface AuthenticationSession {
    accessToken: string;
    account: AuthenticationSessionAccountInformation;
    id: string;
    scopes: readonly string[];
}

Properties

accessToken: string
id: string
scopes: readonly string[]