chore(typings): remove traceur-runtime.d.ts

fixes #4297

Closes #4415
This commit is contained in:
Alex Eagle
2015-09-29 11:11:06 -07:00
committed by Alex Eagle
parent fb9796130d
commit 9b7378d132
59 changed files with 142 additions and 256 deletions

View File

@ -38,7 +38,7 @@ export class Headers {
_headersMap: Map<string, string[]>;
constructor(headers?: Headers | StringMap<string, any>) {
if (isBlank(headers)) {
this._headersMap = new Map();
this._headersMap = new Map<string, string[]>();
return;
}

View File

@ -7,7 +7,7 @@ import {
} from 'angular2/src/core/facade/collection';
function paramParser(rawParams: string = ''): Map<string, string[]> {
var map: Map<string, string[]> = new Map();
var map = new Map<string, string[]>();
if (rawParams.length > 0) {
var params: string[] = StringWrapper.split(rawParams, new RegExp('&'));
ListWrapper.forEach(params, (param: string) => {