(value: Value)
| 7120 | }).annotations({ description: "NoneEncoded" }) |
| 7121 | |
| 7122 | const optionSomeEncoded = <Value extends Schema.Any>(value: Value) => |
| 7123 | Struct({ |
| 7124 | _tag: Literal("Some"), |
| 7125 | value |
| 7126 | }).annotations({ description: `SomeEncoded<${format(value)}>` }) |
| 7127 | |
| 7128 | const optionEncoded = <Value extends Schema.Any>(value: Value) => |
| 7129 | Union( |
no test coverage detected