chore(ts2dart): replace List with Array

Closes #3514
This commit is contained in:
Misko Hevery
2015-08-28 11:29:19 -07:00
committed by Miško Hevery
parent 4415855683
commit e916836261
204 changed files with 815 additions and 947 deletions
+2 -2
View File
@@ -62,7 +62,7 @@ export {EventEmitter, Observable} from './src/core/facade/async';
* ```
*
*/
export const HTTP_BINDINGS: List<any> = [
export const HTTP_BINDINGS: any[] = [
// TODO(pascal): use factory type annotations once supported in DI
// issue: https://github.com/angular/angular/issues/3183
bind(Http)
@@ -74,7 +74,7 @@ export const HTTP_BINDINGS: List<any> = [
XHRBackend
];
export const JSONP_BINDINGS: List<any> = [
export const JSONP_BINDINGS: any[] = [
// TODO(pascal): use factory type annotations once supported in DI
// issue: https://github.com/angular/angular/issues/3183
bind(Jsonp)