Interface IDateStatistics

interface IDateStatistics {
    count: number;
    hist: readonly IBin<Date>[];
    histGranularity: IDateHistGranularity;
    max: Date;
    maxBin: number;
    min: Date;
    missing: number;
}

Hierarchy (view full)

Properties

count: number
hist: readonly IBin<Date>[]
histGranularity: IDateHistGranularity
max: Date
maxBin: number
min: Date
missing: number