( schema: Schema.Schema<A, I, R>, options?: AST.ParseOptions )
| 502 | * @since 3.10.0 |
| 503 | */ |
| 504 | export const decodeUnknown = <A, I, R>( |
| 505 | schema: Schema.Schema<A, I, R>, |
| 506 | options?: AST.ParseOptions |
| 507 | ): (u: unknown, overrideOptions?: AST.ParseOptions) => Effect.Effect<A, ParseIssue, R> => |
| 508 | getEffect(schema.ast, true, options) |
| 509 | |
| 510 | /** |
| 511 | * @throws `ParseError` |
no test coverage detected