docs(Type): improve api docs

This commit is contained in:
Igor Minar 2015-09-21 12:19:51 -07:00
parent 7771ef4873
commit d348e5051f
1 changed files with 3 additions and 2 deletions

View File

@ -23,9 +23,10 @@ export {_global as global};
export var Type = Function; export var Type = Function;
/** /**
* Runtime representation of a type. * Runtime representation a type that a Component or other object is instances of.
* *
* In JavaScript a Type is a constructor function. * An example of a `Type` is `MyCustomComponent` class, which in JavaScript is be represented by
* the `MyCustomComponent` constructor function.
*/ */
export interface Type extends Function { new (...args): any; } export interface Type extends Function { new (...args): any; }