Interface AuthenticationMain

interface AuthenticationMain {
    $getAccounts(providerId): Thenable<readonly AuthenticationSessionAccountInformation[]>;
    $getSession(providerId, scopes, extensionId, extensionName, options): Promise<undefined | AuthenticationSession>;
    $onDidChangeSessions(providerId, event): void;
    $registerAuthenticationProvider(id, label, supportsMultipleAccounts): void;
    $unregisterAuthenticationProvider(id): void;
}

Implemented by

Methods