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