UNPKG

mingo

Version:

MongoDB query language for in-memory objects

6 lines (5 loc) 277 B
import { Any, AnyObject, Options } from "../../../types"; /** * Inverts the effect of a query expression and returns documents that do not match the query expression. */ export declare function $not(selector: string, rhs: Any, options: Options): (obj: AnyObject) => boolean;