UNPKG

typebox-schema-faker

Version:

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

7 lines (6 loc) 227 B
import { type TRecursive, type TSchema } from '@sinclair/typebox'; import type { FakerFn } from '../types'; /** * Generates fake data for recursive schemas */ export declare const fakeRecursive: FakerFn<TRecursive<TSchema>>;