Type alias ClassGuardCodec<Fns>

ClassGuardCodec<Fns>: Fns & {
    codecType: "type";
    serializeClass: (new (...args) => any);
    type: string;
}

Type Parameters

Type declaration

  • codecType: "type"
  • serializeClass: (new (...args) => any)
      • new (...args): any
      • Parameters

        • Rest ...args: any[]

        Returns any

  • type: string