MakeOptionsOptions for makeEffect, make, and Class constructors.
When to use
Use when passing disableChecks: true to skip validation when you trust the data.
- Pass
parseOptionsto control error reporting behavior.
optionsBottom.makeEffectBottom.make
Source effect/Schema.ts:11616 lines
export interface MakeOptions {
/**
* The parse options to use for the schema.
*/
readonly MakeOptions.parseOptions?: SchemaAST.ParseOptions | undefinedThe parse options to use for the schema.
parseOptions?: import SchemaASTSchemaAST.ParseOptions | undefined
/**
* Whether to disable validation for the schema.
*/
readonly MakeOptions.disableChecks?: boolean | undefinedWhether to disable validation for the schema.
disableChecks?: boolean | undefined
/** @internal */
readonly "~payload"?: {
readonly token: unknowntoken: unknown
readonly value: unknownvalue: unknown
}
}Referenced by 5 symbols