UNPKG

209 BPlain TextView Raw
1type ICompare<T> = (a: T, b: T) => boolean;
2type ICompareOne<T> = (a: T) => 0|1|-1;
3type IEqualCompare<T> = (a: T, b: T) => 0|1|-1;
4export { ICompare, IEqualCompare, ICompareOne };
5export default ICompare;