UNPKG

typeorm-seeding

Version:

🌱 A delightful way to seed test data into your database.

5 lines (4 loc) • 163 B
/** * Times repeats a function n times */ export declare const times: <TResult>(n: number, iteratee: (index: number) => Promise<TResult>) => Promise<TResult[]>;