Theia API Documentation v1.65.0
    Preparing search index...
    interface CredentialsService {
        onDidChangePassword: Event<CredentialsChangeEvent>;
        deletePassword(service: string, account: string): Promise<boolean>;
        findCredentials(
            service: string,
        ): Promise<{ account: string; password: string }[]>;
        findPassword(service: string): Promise<undefined | string>;
        getPassword(service: string, account: string): Promise<undefined | string>;
        setPassword(
            service: string,
            account: string,
            password: string,
        ): Promise<void>;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    onDidChangePassword: Event<CredentialsChangeEvent>

    Methods