From 306dd2f52f28ad51d95ec739587468a8f07a7ce9 Mon Sep 17 00:00:00 2001 From: Diego Vilar Date: Wed, 21 Nov 2012 03:01:26 -0300 Subject: [PATCH] Fixed a type on the IHttpBackendService interface: there was a ; instead of a : --- angularjs/angular-1.0.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/angularjs/angular-1.0.d.ts b/angularjs/angular-1.0.d.ts index 92f66ae0e..7dbbcef65 100644 --- a/angularjs/angular-1.0.d.ts +++ b/angularjs/angular-1.0.d.ts @@ -518,7 +518,7 @@ module ng { /////////////////////////////////////////////////////////////////////////// interface IHttpBackendService { // XXX Perhaps define callback signature in the future - (method: string, url: string, post?: any, callback?: Function, headers?: any, timeout?: number, withCredentials?: bool); void; + (method: string, url: string, post?: any, callback?: Function, headers?: any, timeout?: number, withCredentials?: bool): void; } /////////////////////////////////////////////////////////////////////////// @@ -635,4 +635,4 @@ module ng { } -} \ No newline at end of file +}