( schema: S, options?: SchemaAST.ParseOptions )
| 719 | * @since 4.0.0 |
| 720 | */ |
| 721 | export function encodeUnknownExit<S extends Schema.ConstraintEncoder<unknown>>( |
| 722 | schema: S, |
| 723 | options?: SchemaAST.ParseOptions |
| 724 | ): (input: unknown, options?: SchemaAST.ParseOptions) => Exit.Exit<S["Encoded"], SchemaIssue.Issue> { |
| 725 | return asExit(encodeUnknownEffect(schema, options)) |
| 726 | } |
| 727 | |
| 728 | /** |
| 729 | * Creates a synchronous encoder for input already typed as the schema's decoded |
nothing calls this directly
no test coverage detected