summaryrefslogtreecommitdiff
path: root/cli/dts/lib.es2015.reflect.d.ts
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2022-06-01 10:19:18 +1000
committerGitHub <noreply@github.com>2022-06-01 10:19:18 +1000
commit7eee521199e9735ab7c347d99e9d90ba3046be1a (patch)
tree2528f05c15f6e689c1cb409a6bbe554b2507fc40 /cli/dts/lib.es2015.reflect.d.ts
parentc41544ac7b502fbdb6c1ee96a604490b72eb7770 (diff)
feat: update to TypeScript 4.7 (#14242)
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]`,