UNPKG

@damien-thiesson/typeorm-fixtures-cli

Version:

TypeORM fixtures CLI - Fork with disabled faker in production

14 lines (13 loc) 268 B
export interface IFixture { parameters: { [key: string]: any; }; processor?: string; locale?: string; disableFaker?: boolean; entity: string; name: string; dependencies: string[]; resolvedFields?: string[]; data: any; }