Merge pull request #6747 from vonderheide/master

Fix type of argument 'expression' of IFilterOrderBy to allow mixing functions and strings
This commit is contained in:
Masahiro Wakame
2015-11-16 23:31:25 +09:00

View File

@@ -774,7 +774,7 @@ declare module angular {
* @param reverse Reverse the order of the array.
* @return Reverse the order of the array.
*/
<T>(array: T[], expression: string|string[]|((value: T) => any)|((value: T) => any)[], reverse?: boolean): T[];
<T>(array: T[], expression: string|((value: T) => any)|(((value: T) => any)|string)[], reverse?: boolean): T[];
}
/**