UNPKG

typebox-schema-faker

Version:

Generate fake data from TypeBox schemas for testing, prototyping and development.

8 lines (7 loc) 186 B
import { TypeBoxError } from '@sinclair/typebox'; /** * Generates fake data for never schemas */ export const fakeNever = () => { throw new TypeBoxError('Type TNever reached'); };