@nats-io/kv
    Preparing search index...

    Type Alias KvCodecs

    A KvCodecs object contains two codecs: one for keys and one for values. These codecs are used to encode and decode keys and values before they are stored or retrieved from the KV.

    type KvCodecs = {
        key: KvKeyCodec;
        value: KvPayloadCodec;
    }
    Index

    Properties

    Properties

    Codec for Keys in the KV

    Codec for Data in the KV