made parameter of interface ObjectID optional

This commit is contained in:
Sebastian Clausen
2015-09-30 16:05:13 +02:00
parent 30387ec3dd
commit 92e42e0b5a

2
meteor/meteor.d.ts vendored
View File

@@ -576,7 +576,7 @@ declare module Mongo {
var ObjectID: ObjectIDStatic;
interface ObjectIDStatic {
new(hexString: string): ObjectID;
new(hexString?: string): ObjectID;
}
interface ObjectID {
}