UNPKG

mingo

Version:

MongoDB query language for in-memory objects

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