UNPKG

typeorm-plus-fixtures-cli

Version:

This is a fork of [typeorm-fixtures](https://github.com/RobinCK/typeorm-fixtures)

14 lines (13 loc) 390 B
import { Connection } from 'typeorm-plus'; import { IDataParser, IFixture } from './interface'; export declare class Builder { private readonly connection; private readonly parser; entities: any; constructor(connection: Connection, parser: IDataParser); /** * @param {IFixture} fixture * @return {any} */ build(fixture: IFixture): Promise<unknown>; }