We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 02547fe + fc4a5df commit b7d1d11Copy full SHA for b7d1d11
src/lib/es2015.reflect.d.ts
@@ -6,8 +6,7 @@ declare namespace Reflect {
6
function get(target: any, propertyKey: PropertyKey, receiver?: any): any;
7
function getOwnPropertyDescriptor(target: any, propertyKey: PropertyKey): PropertyDescriptor;
8
function getPrototypeOf(target: any): any;
9
- function has(target: any, propertyKey: string): boolean;
10
- function has(target: any, propertyKey: symbol): boolean;
+ function has(target: any, propertyKey: PropertyKey): boolean;
11
function isExtensible(target: any): boolean;
12
function ownKeys(target: any): Array<PropertyKey>;
13
function preventExtensions(target: any): boolean;
0 commit comments