/** * Shared type definitions for the interval-tree library */ import type { IntervalBase } from './classes/Interval'; export type Comparable = number | bigint | string | Date | [number, number]; export type IntervalInput = IntervalBase | [number, number]; //# sourceMappingURL=types.d.ts.map