/** * @see https://github.com/nats-io/nats.js * * @publicApi */ export interface NatsCodec { encode(d: T): Uint8Array; decode(a: Uint8Array): T; }