Skip to content

Commit

Permalink
Merge pull request #10962 from johanssj/Fix10949
Browse files Browse the repository at this point in the history
Fix Reflect has method signature(s) per issue #10949 initial report
  • Loading branch information
mhegazy authored Sep 19, 2016
2 parents 02547fe + fc4a5df commit b7d1d11
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/lib/es2015.reflect.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ declare namespace Reflect {
function get(target: any, propertyKey: PropertyKey, receiver?: any): any;
function getOwnPropertyDescriptor(target: any, propertyKey: PropertyKey): PropertyDescriptor;
function getPrototypeOf(target: any): any;
function has(target: any, propertyKey: string): boolean;
function has(target: any, propertyKey: symbol): boolean;
function has(target: any, propertyKey: PropertyKey): boolean;
function isExtensible(target: any): boolean;
function ownKeys(target: any): Array<PropertyKey>;
function preventExtensions(target: any): boolean;
Expand Down

0 comments on commit b7d1d11

Please sign in to comment.