(left: Left)
| 7364 | }).annotations({ description: `RightEncoded<${format(right)}>` }) |
| 7365 | |
| 7366 | const leftEncoded = <Left extends Schema.All>(left: Left) => |
| 7367 | Struct({ |
| 7368 | _tag: Literal("Left"), |
| 7369 | left |
| 7370 | }).annotations({ description: `LeftEncoded<${format(left)}>` }) |
| 7371 | |
| 7372 | const eitherEncoded = <Right extends Schema.All, Left extends Schema.All>( |
| 7373 | right: Right, |
no test coverage detected
searching dependent graphs…