mingo
Version:
MongoDB query language for in-memory objects
5 lines (4 loc) • 339 B
TypeScript
import { UpdateOptions } from "../../core";
import { AnyObject } from "../../types";
/** Updates the value of the field to a specified value if the specified value is less than the current value of the field. */
export declare const $min: (obj: AnyObject, expr: AnyObject, arrayFilters?: AnyObject[], options?: UpdateOptions) => string[];