UNPKG

mingo

Version:

MongoDB query language for in-memory objects

11 lines (10 loc) 263 B
import { Any, AnyObject, Options } from "../../../types"; interface InputExpr { n: Any; input: Any; } /** * Returns the n smallest values in an array. */ export declare const $minN: (obj: AnyObject, expr: InputExpr, options: Options) => Any; export {};