UNPKG

mongodb-aggregate-builder

Version:
12 lines (11 loc) 372 B
export type UnitType = "millisecond" | "second" | "minute" | "hour" | "day" | "week" | "month" | "quarter" | "year"; export type DensifyBoundsType = "full" | "partition" | any[]; export interface DensifyInterface { field: string; partitionByFields?: string[]; range: { bounds: DensifyBoundsType; step: number; unit?: UnitType; }; }