Capsium TypeScript API
    Preparing search index...

    Interface KeyValueBlobCache

    Minimal blob persistence so tests can substitute an in-memory fake.

    interface KeyValueBlobCache {
        delete(key: string): Promise<void>;
        get(key: string): Promise<Uint8Array<ArrayBufferLike> | undefined>;
        put(key: string, data: Uint8Array): Promise<void>;
    }

    Implemented by

    Index