UNPKG

mocker-data-generator

Version:

A simplified way to generate mock data, builds using a simple schema and with the FakerJs

9 lines (8 loc) 230 B
export type CustomGeneratorRun = (generator: any, input: any) => any; export type CustomGenerator = { library: any; run: CustomGeneratorRun | undefined; }; export type Generators = { [key: string]: CustomGenerator; };