UNPKG

seedgoose

Version:

Mongoose data seeding with smart id references tracking.

8 lines (7 loc) 273 B
interface Reporter { colorOutput: boolean; startSeedCollection: (collectionName: string) => void; endSeedCollection: (collectionName: string) => void; didHandleRecord: (action: string, collectionName: string, id: string) => void; } export default Reporter;