fix(types): Add StringMap type

This commit is contained in:
Tobias Bosch
2015-02-18 09:04:02 -08:00
parent 56f4e84d45
commit cd90038950
13 changed files with 31 additions and 27 deletions

View File

@ -1,6 +1,6 @@
import {isBlank, isPresent, BaseException, stringify} from 'angular2/src/facade/lang';
import {DOM, Element} from 'angular2/src/facade/dom';
import {StringMapWrapper} from 'angular2/src/facade/collection';
import {StringMapWrapper, StringMap} from 'angular2/src/facade/collection';
import {XHR} from './xhr/xhr';
@ -11,7 +11,7 @@ import {Template} from 'angular2/src/core/annotations/template';
*/
export class TemplateLoader {
_xhr: XHR;
_cache;
_cache: StringMap;
constructor(xhr: XHR) {
this._xhr = xhr;