UNPKG

typebox-schema-faker

Version:

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

10 lines (9 loc) 283 B
import type { FakerContext } from './types'; type CreateContextOptions = { seed?: number; }; /** * Creates a new faker context for tracking schema references and recursion depth */ export declare function createContext(options?: CreateContextOptions): FakerContext; export {};