diff --git a/types/mongodb/index.d.ts b/types/mongodb/index.d.ts index c1fcc48d94..430541b21d 100644 --- a/types/mongodb/index.d.ts +++ b/types/mongodb/index.d.ts @@ -928,7 +928,6 @@ export interface Collection { estimatedDocumentCount(query: FilterQuery, options: MongoCountPreferences, callback: MongoCallback): void; /** http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#find */ find(query?: FilterQuery): Cursor; - /** @deprecated */ find(query: FilterQuery, options?: FindOneOptions): Cursor; /** http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#findOne */ findOne(filter: FilterQuery, callback: MongoCallback): void;