( schema: S, options?: SchemaAST.ParseOptions )
| 522 | * @since 3.10.0 |
| 523 | */ |
| 524 | export function decodeUnknownSync<S extends Schema.ConstraintDecoder<unknown>>( |
| 525 | schema: S, |
| 526 | options?: SchemaAST.ParseOptions |
| 527 | ): (input: unknown, options?: SchemaAST.ParseOptions) => S["Type"] { |
| 528 | return asSync(decodeUnknownEffect(schema, options)) |
| 529 | } |
| 530 | |
| 531 | /** |
| 532 | * Creates a synchronous decoder for input already typed as the schema's `Encoded` |
nothing calls this directly
no test coverage detected