Package: effect
Module: Schema
Options for makeEffect, make, and Class constructors.
When to use
Use when passing disableChecks: true to skip validation when you trust the data.
parseOptions to control error reporting behavior.See
BottomWithoutNew.makeEffectBottomWithoutNew.makeSignature
export interface MakeOptions {
/**
* The parse options to use for the schema.
*/
readonly parseOptions?: SchemaAST.ParseOptions | undefined
/**
* Whether to disable validation for the schema.
*/
readonly disableChecks?: boolean | undefined
/** @internal */
readonly "~payload"?: {
readonly token: unknown
readonly value: unknown
}
}
Since v3.13.4