Theia API Documentation v1.65.0
    Preparing search index...

    Represents a storage utility for secrets, information that is sensitive.

    interface SecretStorage {
        onDidChange: Event<SecretStorageChangeEvent>;
        delete(key: string): Thenable<void>;
        get(key: string): Thenable<undefined | string>;
        store(key: string, value: string): Thenable<void>;
    }

    Implemented by

    Index

    Properties

    Methods

    Properties

    Fires when a secret is stored or deleted.

    Methods

    • Retrieve a secret that was stored with key. Returns undefined if there is no password matching that key.

      Parameters

      • key: string

        The key the secret was stored under.

      Returns Thenable<undefined | string>

      The stored value or undefined.