Theia API Documentation v1.65.0
    Preparing search index...
    interface AuthenticationExt {
        $createSession(
            id: string,
            scopes: string[],
            options: AuthenticationProviderSessionOptions,
        ): Promise<AuthenticationSession>;
        $getSessions(
            providerId: string,
            scopes: undefined | string[],
            options: AuthenticationProviderSessionOptions,
        ): Promise<readonly AuthenticationSession[]>;
        $onDidChangeAuthenticationSessions(
            provider: AuthenticationProviderInformation,
        ): Promise<void>;
        $removeSession(id: string, sessionId: string): Promise<void>;
    }

    Implemented by

    Index

    Methods