chore: add more type annotations

This commit is contained in:
Kevin Moore
2015-04-19 14:47:02 -07:00
parent e23004df52
commit f7f06c5ad4
17 changed files with 80 additions and 81 deletions

View File

@ -38,14 +38,14 @@ export class View {
*
* NOTE: either `templateURL` or `template` should be used, but not both.
*/
templateUrl:any; //string;
templateUrl:string;
/**
* Specifies an inline template for an angular component.
*
* NOTE: either `templateURL` or `template` should be used, but not both.
*/
template:any; //string;
template:string;
/**
* Specifies a list of directives that can be used within a template.
@ -69,7 +69,7 @@ export class View {
* }
* ```
*/
directives:any; //List<Type>;
directives:List<Type>;
/**
* Specify a custom renderer for this View.