temporal-fns
    Preparing search index...

    Interface Interval<T>

    A half-or-fully-closed range between two Temporal values of the same type. Whether start and end are inclusive depends on the function consuming the interval (e.g. isWithinInterval is inclusive on both ends; areIntervalsOverlapping is exclusive by default).

    interface Interval<T extends ComparableTemporal> {
        end: T;
        start: T;
    }

    Type Parameters

    Index

    Properties

    Properties

    end: T
    start: T