Interface CredentialsService

interface CredentialsService {
    onDidChangePassword: Event<CredentialsChangeEvent>;
    deletePassword(service, account): Promise<boolean>;
    findCredentials(service): Promise<{
        account: string;
        password: string;
    }[]>;
    findPassword(service): Promise<undefined | string>;
    getPassword(service, account): Promise<undefined | string>;
    setPassword(service, account, password): Promise<void>;
}

Hierarchy (view full)

Implemented by

Properties

onDidChangePassword: Event<CredentialsChangeEvent>

Methods