From 424873bdfaa0bb226d5525538ff6482d4bebb139 Mon Sep 17 00:00:00 2001 From: beary Date: Fri, 9 Jun 2017 09:37:32 +0800 Subject: [PATCH] Add default generic to FindAndModify... interface --- types/mongodb/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/mongodb/index.d.ts b/types/mongodb/index.d.ts index a7c73e0799..ebe427a427 100644 --- a/types/mongodb/index.d.ts +++ b/types/mongodb/index.d.ts @@ -741,7 +741,7 @@ export interface DeleteWriteOpResultObject { } //http://mongodb.github.io/node-mongodb-native/2.1/api/Collection.html#~findAndModifyWriteOpResult -export interface FindAndModifyWriteOpResultObject { +export interface FindAndModifyWriteOpResultObject { //Document returned from findAndModify command. value?: TSchema; //The raw lastErrorObject returned from the command.