1 2 3 4 5
import { ObjectID } from 'mongodb'; export default function(x: any): x is ObjectID { return x.hasOwnProperty('toHexString') || x.hasOwnProperty('_bsontype'); }