@@ -3513,27 +3513,27 @@ interface ProxyHandler<T> {
3513
3513
3514
3514
interface ProxyConstructor {
3515
3515
revocable < T > ( target : T , handler : ProxyHandler < T > ) : { proxy : T ; revoke : ( ) => void ; } ;
3516
- new < T > ( target : T , handeler : ProxyHandler < T > ) : T
3516
+ new < T > ( target : T , handler : ProxyHandler < T > ) : T
3517
3517
}
3518
3518
declare var Proxy : ProxyConstructor ;
3519
3519
3520
- declare var Reflect : {
3521
- apply ( target : Function , thisArgument : any , argumentsList : ArrayLike < any > ) : any ;
3522
- construct ( target : Function , argumentsList : ArrayLike < any > ) : any ;
3523
- defineProperty ( target : any , propertyKey : PropertyKey , attributes : PropertyDescriptor ) : boolean ;
3524
- deleteProperty ( target : any , propertyKey : PropertyKey ) : boolean ;
3525
- enumerate ( target : any ) : IterableIterator < any > ;
3526
- get ( target : any , propertyKey : PropertyKey , receiver ?: any ) : any ;
3527
- getOwnPropertyDescriptor ( target : any , propertyKey : PropertyKey ) : PropertyDescriptor ;
3528
- getPrototypeOf ( target : any ) : any ;
3529
- has ( target : any , propertyKey : string ) : boolean ;
3530
- has ( target : any , propertyKey : symbol ) : boolean ;
3531
- isExtensible ( target : any ) : boolean ;
3532
- ownKeys ( target : any ) : Array < PropertyKey > ;
3533
- preventExtensions ( target : any ) : boolean ;
3534
- set ( target : any , propertyKey : PropertyKey , value : any , receiver ? :any ) : boolean ;
3535
- setPrototypeOf ( target : any , proto : any ) : boolean ;
3536
- } ;
3520
+ declare module Reflect {
3521
+ function apply ( target : Function , thisArgument : any , argumentsList : ArrayLike < any > ) : any ;
3522
+ function construct ( target : Function , argumentsList : ArrayLike < any > ) : any ;
3523
+ function defineProperty ( target : any , propertyKey : PropertyKey , attributes : PropertyDescriptor ) : boolean ;
3524
+ function deleteProperty ( target : any , propertyKey : PropertyKey ) : boolean ;
3525
+ function enumerate ( target : any ) : IterableIterator < any > ;
3526
+ function get ( target : any , propertyKey : PropertyKey , receiver ?: any ) : any ;
3527
+ function getOwnPropertyDescriptor ( target : any , propertyKey : PropertyKey ) : PropertyDescriptor ;
3528
+ function getPrototypeOf ( target : any ) : any ;
3529
+ function has ( target : any , propertyKey : string ) : boolean ;
3530
+ function has ( target : any , propertyKey : symbol ) : boolean ;
3531
+ function isExtensible ( target : any ) : boolean ;
3532
+ function ownKeys ( target : any ) : Array < PropertyKey > ;
3533
+ function preventExtensions ( target : any ) : boolean ;
3534
+ function set ( target : any , propertyKey : PropertyKey , value : any , receiver ? :any ) : boolean ;
3535
+ function setPrototypeOf ( target : any , proto : any ) : boolean ;
3536
+ }
3537
3537
3538
3538
/**
3539
3539
* Represents the completion of an asynchronous operation
0 commit comments