We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 112dd24 commit 0a24deeCopy full SHA for 0a24dee
src/lib/es2015.reflect.d.ts
@@ -24,7 +24,7 @@ declare namespace Reflect {
24
* @param propertyKey The property name.
25
* @param attributes Descriptor for the property. It can be for a data property or an accessor property.
26
*/
27
- function defineProperty(target: object, propertyKey: PropertyKey, attributes: PropertyDescriptor): boolean;
+ function defineProperty(target: object, propertyKey: PropertyKey, attributes: PropertyDescriptor & ThisType<any>): boolean;
28
29
/**
30
* Removes a property from an object, equivalent to `delete target[propertyKey]`,
0 commit comments