/** A comparator function that returns a negative number if a < b, zero if a == b, and a positive number if a > b. */ export type Compare = (a: T, b: T) => number; //# sourceMappingURL=Compare.d.ts.map