A datum stream time range.

interface DatumRange {
    dayCount: number;
    eDate: Date;
    endDate: string;
    endDateMillis: number;
    monthCount: number;
    ranges: DatumRangeResult[];
    sDate: Date;
    startDate: string;
    startDateMillis: number;
    timeZone: string;
    yearCount: number;
}

Hierarchy (view full)

Properties

dayCount: number

The number of days in the range.

eDate: Date

The end of the time range.

endDate: string

The end of the time range.

endDateMillis: number

The end of the time range, in milliseconds since the epoch.

monthCount: number

The number of months in the range.

The raw ranges for each filter.

sDate: Date

The start of the time range.

startDate: string

The start of the time range.

startDateMillis: number

The start of the time range, in milliseconds since the epoch.

timeZone: string

The local time zone of the node.

yearCount: number

The number of years in the range.