export type ComparatorResult = -1 | 0 | 1; export type Comparator = (left: T, right: T) => ComparatorResult;