Files
TypeScript/src/lib/es2022.object.d.ts
2022-03-10 15:28:47 -08:00

9 lines
240 B
TypeScript

interface ObjectConstructor {
/**
* Determines whether an object has a property with the specified name.
* @param o An object.
* @param v A property name.
*/
hasOwn(o: object, v: PropertyKey): boolean;
}