Theia API Documentation v1.65.0
    Preparing search index...
    interface KeyStoreService {
        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>;
    }

    Implemented by

    Index

    Methods

    • Parameters

      • service: string

      Returns Promise<{ account: string; password: string }[]>

    • Parameters

      • service: string
      • account: string

      Returns Promise<undefined | string>

    • Parameters

      • service: string
      • account: string
      • password: string

      Returns Promise<void>