UNPKG

mingo

Version:

MongoDB query language for in-memory objects

11 lines (10 loc) 297 B
import { Any, AnyObject, Options } from "../../types"; interface InputExpr { n: Any; input: Any; } /** * Returns an aggregation of the minimum value n elements within a group. */ export declare const $minN: (coll: AnyObject[], expr: InputExpr, options: Options) => unknown[]; export {};