Skip to content

Commit

Permalink
refactor: Fix definitelytyped reference for mongodb remove function
Browse files Browse the repository at this point in the history
  • Loading branch information
notheotherben committed Sep 29, 2015
1 parent b869541 commit 12b201b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typings/DefinitelyTyped/mongodb/mongodb.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ declare module "mongodb" {
insertMany(docs: any[], options: { w?: any; wtimeout?: number; j?: boolean; serializeFunctions?: boolean; forceServerObjectId?: boolean }, callback: (err: Error, result: any) => void): void;

remove(selector: Object, callback?: (err: Error, result: any) => void): void;
remove(selector: Object, options: { safe?: any; single?: boolean; }, callback?: (err: Error, result: any) => void): void;
remove(selector: Object, options: { safe?: any; single?: boolean; w?: string | number; }, callback?: (err: Error, result: any) => void): void;

rename(newName: String, callback?: (err: Error, result: any) => void): void;

Expand Down

0 comments on commit 12b201b

Please sign in to comment.