import { model, Model } from 'mongoose'; // An interface for mongoose.connection export interface Connection { model: typeof model; models: Record>; dropCollection: (name: string) => Promise; } export default Connection;