( schema: S, options?: SchemaAST.ParseOptions )
| 375 | * @since 4.0.0 |
| 376 | */ |
| 377 | export function decodeUnknownExit<S extends Schema.ConstraintDecoder<unknown>>( |
| 378 | schema: S, |
| 379 | options?: SchemaAST.ParseOptions |
| 380 | ): (input: unknown, options?: SchemaAST.ParseOptions) => Exit.Exit<S["Type"], SchemaIssue.Issue> { |
| 381 | return asExit(decodeUnknownEffect(schema, options)) |
| 382 | } |
| 383 | |
| 384 | /** |
| 385 | * Creates a synchronous decoder for input already typed as the schema's `Encoded` |
nothing calls this directly
no test coverage detected