()
| 354 | operation = "add", |
| 355 | ): AddOutput<A, B> { |
| 356 | const error = () => { |
| 357 | throw new Error(`Invalid ${operation} types: ${a}, ${b}`); |
| 358 | }; |
| 359 | // @ts-ignore |
| 360 | if (a === b) return a as AddOutput<A, B>; |
| 361 | if (a === "int") { |
no outgoing calls
no test coverage detected