/** @packageDocumentation * @module OrbitGT */ declare type int32 = number; /** * Interface iComparator allows sorting of objects by comparing them to one another. */ /** @internal */ export interface iComparator { compare(value1: T, value2: T): int32; } export {}; //# sourceMappingURL=iComparator.d.ts.map