Merge pull request #9131 from DmitryEfimenko/master

added ObjectID methods
This commit is contained in:
Mohamed Hegazy
2016-06-27 09:19:20 -07:00
committed by GitHub

2
meteor/meteor.d.ts vendored
View File

@@ -686,6 +686,8 @@ declare namespace Mongo {
new(hexString?: string): ObjectID;
}
interface ObjectID {
valueOf(): string;
getTimestamp(): Date;
}
}