Type alias CustomCodecOpts<SerCtx, DesCtx>

CustomCodecOpts<SerCtx, DesCtx>: CustomCodecSerOpts<SerCtx> & ({
    deserialize: SerDesFn<DesCtx>;
    deserializeGuard: SerDesGuard<DesCtx>;
} | {
    deserialize?: never;
})

Type Parameters

  • SerCtx
  • DesCtx