UNPKG

@flatten-js/interval-tree

Version:
7 lines 294 B
/** * 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