Update angular.d.ts

ILocationService.search() will return a hash of the query parameters in the current location, not a string.
This commit is contained in:
benjaminjackman
2013-08-29 14:25:57 -05:00
parent 7081b41df4
commit bb999fd4e6

View File

@@ -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;