Hyperlinkv0.8.0-beta.28

Schema

Schema.MakeOptionsinterfaceeffect/Schema.ts:116
MakeOptions

Options for makeEffect, make, and Class constructors.

When to use

Use when passing disableChecks: true to skip validation when you trust the data.

  • Pass parseOptions to 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 parseOptions?: SchemaAST.ParseOptions | undefined
  /**
   * Whether to disable validation for the schema.
   */
  readonly disableChecks?: boolean | undefined

  /** @internal */
  readonly "~payload"?: {
    readonly token: unknown
    readonly value: unknown
  }
}
Referenced by 5 symbols