Merge pull request #6037 from eugenpodaru/master

Fix to IFilterPredicateFunc<T>
This commit is contained in:
Masahiro Wakame
2015-10-06 21:11:09 +09:00
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -794,7 +794,7 @@ declare module angular {
}
interface IFilterPredicateFunc<T> {
(value: T, index: number, array: T[]): T[];
(value: T, index: number, array: T[]): boolean;
}
interface IFilterComparatorFunc<T> {