-
Notifications
You must be signed in to change notification settings - Fork 60
Open
Description
Originally reported by @puzpuzpuz
Describe the bug
sort
method in the TS Comparator
interface used by PagingPredicate
seems to be redundant. The client doesn't need it since the sort happens on member side
Expected behavior
get rid of it if it's really redundant/or maybe deprecate it
Additional Info
sort(a: [any, any], b: [any, any]): number; |
puzpuzpuz