Package: effect
Module: ParseResult
The Forbidden variant of the ParseIssue type represents a forbidden operation, such as when encountering an Effect that is not allowed to execute (e.g., using runSync).
Signature
declare class Forbidden { constructor(
readonly ast: AST.AST,
readonly actual: unknown,
readonly message?: string
) }
Since v3.10.0