UNPKG

mingo

Version:

MongoDB query language for in-memory objects

11 lines (10 loc) 269 B
import { Any, Options } from "../../../types"; interface InputExpr { n: Any; input: Any; } /** * Returns a specified number of elements from the end of an array. */ export declare const $lastN: (obj: Any, expr: InputExpr, options: Options) => Any; export {};