Type alias PathCodec<Fns>

PathCodec<Fns>: {
    deserialize: Fns["deserialize"];
    serialize?: Fns["serialize"];
} & {
    codecType: "path";
    path: string[];
}

Type Parameters

Type declaration

  • deserialize: Fns["deserialize"]
  • Optional serialize?: Fns["serialize"]

Type declaration

  • codecType: "path"
  • path: string[]