@edgible-team/sdk
    Preparing search index...

    Interface CredentialStore

    Pluggable persistence: file on Node/CLI, in-memory in browser (D8).

    interface CredentialStore {
        clear(): Promise<void>;
        load(): Promise<StoredCredentials | null>;
        save(creds: StoredCredentials): Promise<void>;
    }

    Implemented by

    Index

    Methods

    Methods

    • Delete the persisted session (called on logout).

      Returns Promise<void>