UNPKG

typebox-schema-faker

Version:

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

7 lines (6 loc) 205 B
import type { TReadonly } from '@sinclair/typebox'; import type { FakerFn } from '../types'; /** * Generates fake data for readonly schemas */ export declare const fakeReadonly: FakerFn<TReadonly<any>>;