Documentation
    Preparing search index...

    Interface BoundKvStore

    A KV store interface that allows for binding to a specific key.

    interface BoundKvStore {
        get(): null | string;
        remove(): void;
        set(value: string): void;
    }

    Implemented by

    Index

    Methods

    Methods

    • Gets the value associated with the bound key.

      Returns null | string

    • Removes the value associated with the bound key.

      Returns void

    • Sets the value for the bound key.

      Parameters

      • value: string

      Returns void