(literal: Tag)
| 6120 | * @since 4.0.0 |
| 6121 | */ |
| 6122 | export function tagDefaultOmit<Tag extends SchemaAST.LiteralValue>(literal: Tag) { |
| 6123 | return tag(literal).pipe(withDecodingDefaultKey(Effect.succeed(literal), { encodingStrategy: "omit" })) |
| 6124 | } |
| 6125 | |
| 6126 | /** |
| 6127 | * Type-level representation returned by {@link TaggedStruct}. |
nothing calls this directly
no test coverage detected