summaryrefslogtreecommitdiff
path: root/cli/dts/lib.es2015.reflect.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/dts/lib.es2015.reflect.d.ts')
-rw-r--r--cli/dts/lib.es2015.reflect.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/dts/lib.es2015.reflect.d.ts b/cli/dts/lib.es2015.reflect.d.ts
index d022a2b77..d1beb6862 100644
--- a/cli/dts/lib.es2015.reflect.d.ts
+++ b/cli/dts/lib.es2015.reflect.d.ts
@@ -44,7 +44,7 @@ declare namespace Reflect {
* @param propertyKey The property name.
* @param attributes Descriptor for the property. It can be for a data property or an accessor property.
*/
- function defineProperty(target: object, propertyKey: PropertyKey, attributes: PropertyDescriptor): boolean;
+ function defineProperty(target: object, propertyKey: PropertyKey, attributes: PropertyDescriptor & ThisType<any>): boolean;
/**
* Removes a property from an object, equivalent to `delete target[propertyKey]`,