* Constructs a value from the make input representation, returning validation * failures in the `Effect` error channel. * * **When to use** * * Use when constructor input may fail validation and you want to * compose that failure with other `Effect` operations instead of throwing.
(input: this["~type.make.in"], options?: MakeOptions)
| 254 | * @see {@link BottomWithoutNew.makeOption} — construct synchronously and discard validation details |
| 255 | */ |
| 256 | makeEffect(input: this["~type.make.in"], options?: MakeOptions): Effect.Effect<this["Type"], SchemaIssue.Issue> |
| 257 | } |
| 258 | |
| 259 | /** |
no outgoing calls
no test coverage detected