flow-declarations
Version:
High quality type declarations for flow.js
10 lines (9 loc) • 352 B
JavaScript
declare module 'bson-objectid' {
declare module.exports: {
(id?: string | number | bson$ObjectId): bson$ObjectId;
createFromHexString(hexString: string): bson$ObjectId;
createFromTime(time: number): bson$ObjectId;
isValid(id?: string | number | bson$ObjectId | null | void): boolean;
generate(time?: number): bson$ObjectId;
}
}