// this import is required so that types get merged instead of completely overwrittenimport'mongodb';
declare module 'mongodb' {
interfaceObjectId {
/** Mongoose automatically adds a conveniency "_id" getter on the base ObjectId class */
_id: this;
}
}