(right: Right)
| 7358 | export type EitherEncoded<IR, IL> = RightEncoded<IR> | LeftEncoded<IL> |
| 7359 | |
| 7360 | const rightEncoded = <Right extends Schema.All>(right: Right) => |
| 7361 | Struct({ |
| 7362 | _tag: Literal("Right"), |
| 7363 | right |
| 7364 | }).annotations({ description: `RightEncoded<${format(right)}>` }) |
| 7365 | |
| 7366 | const leftEncoded = <Left extends Schema.All>(left: Left) => |
| 7367 | Struct({ |
no test coverage detected
searching dependent graphs…