efate
Version:
javascript test fixture generator. Autofixturejs 2.0
11 lines (10 loc) • 362 B
TypeScript
import Field from './field';
export declare type BuilderGeneratorFunction<T> = (increment: number) => Field<keyof T>;
export declare type BuilderReturnFunction<T> = (increment: number) => Field<T>;
export declare type DateBuilderOptions = {
incrementDay: boolean;
};
export declare type LoremIpsumOptions = {
minLength: number;
maxLength: number;
};