Interface KvCodecs

interface KvCodecs {
    key: KvCodec<string>;
    value: KvCodec<Uint8Array>;
}

Properties

Properties

key: KvCodec<string>

Codec for Keys in the KV

value: KvCodec<Uint8Array>

Codec for Data in the KV