chronia
    Preparing search index...

    Type Alias Interval

    Date interval with optional start and end boundaries.

    Used in date range operations to define a time interval with optional boundaries. Either boundary can be null to indicate an open interval in that direction.

    • start: The start boundary of the interval (null means no lower bound)
    • end: The end boundary of the interval (null means no upper bound)
    type Interval = {
        end: Date | number | null;
        start: Date | number | null;
    }
    Index

    Properties

    Properties

    end: Date | number | null

    The end boundary of the interval. If null, the interval has no upper bound (extends to MAX_DATE).

    start: Date | number | null

    The start boundary of the interval. If null, the interval has no lower bound (extends to MIN_DATE).