Skip to content

Never

This schema rejects all values, and corresponds to the never TypeScript type.

Example

import * as p from '@vbudovski/paseri';
const schema = p.never();
const data = 'foo';
const result = schema.safeParse(data);
if (!result.ok) {
// result.issue flags value as invalid.
}

Playground

Schema
Data
Result