From bb999fd4e6c456a7b7416d484cf56854dcaaa27b Mon Sep 17 00:00:00 2001 From: benjaminjackman Date: Thu, 29 Aug 2013 14:25:57 -0500 Subject: [PATCH] Update angular.d.ts ILocationService.search() will return a hash of the query parameters in the current location, not a string. --- angularjs/angular.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/angularjs/angular.d.ts b/angularjs/angular.d.ts index 86f0859b88..e30df174e8 100644 --- a/angularjs/angular.d.ts +++ b/angularjs/angular.d.ts @@ -356,7 +356,7 @@ declare module ng { port(): number; protocol(): string; replace(): ILocationService; - search(): string; + search(): any; search(parametersMap: any): ILocationService; search(parameter: string, parameterValue: any): ILocationService; url(): string;