11declare namespace Reflect {
22 function apply ( target : Function , thisArgument : any , argumentsList : ArrayLike < any > ) : any ;
33 function construct ( target : Function , argumentsList : ArrayLike < any > , newTarget ?: any ) : any ;
4- function defineProperty ( target : any , propertyKey : PropertyKey , attributes : PropertyDescriptor ) : boolean ;
5- function deleteProperty ( target : any , propertyKey : PropertyKey ) : boolean ;
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 : PropertyKey ) : boolean ;
10- function isExtensible ( target : any ) : boolean ;
11- function ownKeys ( target : any ) : Array < PropertyKey > ;
12- function preventExtensions ( target : any ) : boolean ;
13- function set ( target : any , propertyKey : PropertyKey , value : any , receiver ?: any ) : boolean ;
14- function setPrototypeOf ( target : any , proto : any ) : boolean ;
15- }
4+ function defineProperty ( target : object , propertyKey : PropertyKey , attributes : PropertyDescriptor ) : boolean ;
5+ function deleteProperty ( target : object , propertyKey : PropertyKey ) : boolean ;
6+ function get ( target : object , propertyKey : PropertyKey , receiver ?: any ) : any ;
7+ function getOwnPropertyDescriptor ( target : object , propertyKey : PropertyKey ) : PropertyDescriptor ;
8+ function getPrototypeOf ( target : object ) : object ;
9+ function has ( target : object , propertyKey : PropertyKey ) : boolean ;
10+ function isExtensible ( target : object ) : boolean ;
11+ function ownKeys ( target : object ) : Array < PropertyKey > ;
12+ function preventExtensions ( target : object ) : boolean ;
13+ function set ( target : object , propertyKey : PropertyKey , value : any , receiver ?: any ) : boolean ;
14+ function setPrototypeOf ( target : object , proto : any ) : boolean ;
15+ }
0 commit comments