Skip to content

Commit b7d1d11

Browse files
authored
Merge pull request #10962 from johanssj/Fix10949
Fix Reflect has method signature(s) per issue #10949 initial report
2 parents 02547fe + fc4a5df commit b7d1d11

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/lib/es2015.reflect.d.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ declare namespace Reflect {
66
function get(target: any, propertyKey: PropertyKey, receiver?: any): any;
77
function getOwnPropertyDescriptor(target: any, propertyKey: PropertyKey): PropertyDescriptor;
88
function getPrototypeOf(target: any): any;
9-
function has(target: any, propertyKey: string): boolean;
10-
function has(target: any, propertyKey: symbol): boolean;
9+
function has(target: any, propertyKey: PropertyKey): boolean;
1110
function isExtensible(target: any): boolean;
1211
function ownKeys(target: any): Array<PropertyKey>;
1312
function preventExtensions(target: any): boolean;

0 commit comments

Comments
 (0)