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

    Type Alias KvCodec<T>

    Generic type for encoding and decoding values before they are stored or returned to the client.

    type KvCodec<T> = {
        decode(k: T): T;
        encode(k: T): T;
    }

    Type Parameters

    • T
    Index

    Methods

    Methods

    • Parameters

      Returns T

    • Parameters

      Returns T