From 50bfbea725dec8dc89e845e6ca6f9a2e64b31697 Mon Sep 17 00:00:00 2001 From: nikeee13 Date: Thu, 29 Aug 2013 00:20:51 +0200 Subject: [PATCH] Update Cursor constants --- mongodb/mongodb.d.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/mongodb/mongodb.d.ts b/mongodb/mongodb.d.ts index 1cc6f5359..35eea5bac 100644 --- a/mongodb/mongodb.d.ts +++ b/mongodb/mongodb.d.ts @@ -338,9 +338,10 @@ declare module "mongodb" { close(callback: (err, result) => void) : void; isClosed(): boolean; - static INIT; - static OPEN; - static CLOSED; + public static INIT: number; + public static OPEN: number; + public static CLOSED: number; + public static GET_MORE: number; } export interface CollectionFindOptions {