Interface AuthenticationExt

interface AuthenticationExt {
    $createSession(id, scopes, options): Promise<AuthenticationSession>;
    $getSessions(providerId, scopes, options): Promise<readonly AuthenticationSession[]>;
    $onDidChangeAuthenticationSessions(provider): Promise<void>;
    $removeSession(id, sessionId): Promise<void>;
}

Implemented by

Methods