diff --git a/types/meteor/mongo.d.ts b/types/meteor/mongo.d.ts index 99f931ec28..28e1868840 100644 --- a/types/meteor/mongo.d.ts +++ b/types/meteor/mongo.d.ts @@ -103,7 +103,10 @@ declare module Mongo { interface ObjectIDStatic { new (hexString?: string): ObjectID; } - interface ObjectID { } + interface ObjectID { + toHexString(): string; + equals(otherID: ObjectID): boolean; + } function setConnectionOptions(options: any): void; }