2016-06-08 18:45:15 -04:00
|
|
|
export function getTypeOf(instance: any /** TODO #9100 */) {
|
2015-03-30 10:37:33 -04:00
|
|
|
return instance.constructor;
|
|
|
|
}
|
|
|
|
|
2015-08-28 14:29:19 -04:00
|
|
|
export function instantiateType(type: Function, params: any[] = []) {
|
2015-03-30 10:37:33 -04:00
|
|
|
var instance = Object.create(type.prototype);
|
|
|
|
instance.constructor.apply(instance, params);
|
|
|
|
return instance;
|
|
|
|
}
|