UNPKG
sorting-lib
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.1
1.0.0
0.0.3
0.0.2
0.0.1
A library that makes sorting easier by introducing `Comparator`
sorting-lib
/
dist
/
comparator.d.ts
4 lines
(3 loc)
•
61 B
TypeScript
View Raw
1
2
3
4
export interface Comparator
<
T
>
{
(
a
:
T
,
b
:
T
)
:
number;
}