18 lines
486 B
TypeScript
Raw Normal View History

/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
export function getTypeOf(instance: any /** TODO #9100 */) {
2015-03-30 16:37:33 +02:00
return instance.constructor;
}
export function instantiateType(type: Function, params: any[] = []) {
2015-03-30 16:37:33 +02:00
var instance = Object.create(type.prototype);
instance.constructor.apply(instance, params);
return instance;
}