Skip to content

Commit b27ab24

Browse files
Updated 'Reflect.construct' to add third 'newTarget' argument.
1 parent f36f510 commit b27ab24

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/es6.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3652,7 +3652,7 @@ declare var Proxy: ProxyConstructor;
36523652

36533653
declare module Reflect {
36543654
function apply(target: Function, thisArgument: any, argumentsList: ArrayLike<any>): any;
3655-
function construct(target: Function, argumentsList: ArrayLike<any>): any;
3655+
function construct(target: Function, argumentsList: ArrayLike<any>, newTarget?: any): any;
36563656
function defineProperty(target: any, propertyKey: PropertyKey, attributes: PropertyDescriptor): boolean;
36573657
function deleteProperty(target: any, propertyKey: PropertyKey): boolean;
36583658
function enumerate(target: any): IterableIterator<any>;

0 commit comments

Comments
 (0)