Merge pull request #91 from diegovilar/master

Fixed a type on the IHttpBackendService interface
This commit is contained in:
Boris Yankov
2012-11-21 03:47:05 -08:00
+2 -2
View File
@@ -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 {
}
}
}