(
this: AnyWithProps,
successSchema: Schema.Schema.Any
)
| 535 | return pipeArguments(this, arguments) |
| 536 | }, |
| 537 | setSuccess( |
| 538 | this: AnyWithProps, |
| 539 | successSchema: Schema.Schema.Any |
| 540 | ) { |
| 541 | return makeProto({ |
| 542 | _tag: this._tag, |
| 543 | payloadSchema: this.payloadSchema, |
| 544 | successSchema, |
| 545 | errorSchema: this.errorSchema, |
| 546 | defectSchema: this.defectSchema, |
| 547 | annotations: this.annotations, |
| 548 | middlewares: this.middlewares |
| 549 | }) |
| 550 | }, |
| 551 | setError(this: AnyWithProps, errorSchema: Schema.Schema.All) { |
| 552 | return makeProto({ |
| 553 | _tag: this._tag, |
nothing calls this directly
no test coverage detected