Merge pull request #3279 from aavezel/patch-1

sorter is comparer function
This commit is contained in:
Masahiro Wakame
2014-12-09 22:16:00 +09:00
+1 -1
View File
@@ -218,7 +218,7 @@ declare module Bloodhound
/**
* A compare function used to sort matched datums for a given query.
*/
sorter?: (a: T, b: T) => T[];
sorter?: (a: T, b: T) => number;
/**
*An array of datums or a function that returns an array of datums.
*/