never

Creates a never schema.

const Schema = never(message);

Parameters

Explanation

When validated, never always returns an issue. You can use message to customize the error message.

Returns

Examples

The following examples show how never can be used.

Strict object schema

Schema to prevent any unknown object properties.

Otherwise, unknown object properties are simply ignored by default.

const StrictObjectSchema = object({ key: sting() }, never());

Strict tuple schema

Schema to prevent any unknown tuple items.

Otherwise, unknown tuple items are simply ignored by default.

const StrictTupleSchema = tuple([string(), number()], never());

The following APIs can be combined with never.

Schemas

Methods

Contributors

Thanks to all the contributors who helped make this page better!

  • GitHub profile picture of fabian-hiller

Partners

Thanks to our partners who support the project ideally and financially.

Sponsors

Thanks to our GitHub sponsors who support the project financially.

  • GitHub profile picture of dailydotdev
  • GitHub profile picture of ivan-mihalic
  • GitHub profile picture of KATT
  • GitHub profile picture of osdiab
  • GitHub profile picture of Thanaen
  • GitHub profile picture of ruiaraujo012
  • GitHub profile picture of hyunbinseo
  • GitHub profile picture of caegdeveloper