mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-06-13 22:00:59 -05:00
9 lines
240 B
TypeScript
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;
|
|
}
|