diff --git a/modules/angular2/src/http/static_response.ts b/modules/angular2/src/http/static_response.ts index 3ca6f701e2..6cd6ff6748 100644 --- a/modules/angular2/src/http/static_response.ts +++ b/modules/angular2/src/http/static_response.ts @@ -91,7 +91,7 @@ export class Response { /** * Attempts to return body as parsed `JSON` object, or raises an exception. */ - json(): Object { + json(): any { var jsonResponse; if (isJsObject(this._body)) { jsonResponse = this._body;