1interface ObjectConstructor { 2 /** 3 * Determines whether an object has a property with the specified name. 4 * @param o An object. 5 * @param v A property name. 6 */ 7 hasOwn(o: object, v: PropertyKey): boolean; 8} 9