UNPKG

mingo

Version:

MongoDB query language for in-memory objects

5 lines (4 loc) 310 B
import { UpdateOptions } from "../../core"; import { Any, AnyObject } from "../../types"; /** Removes all instances of the specified values from an existing array. */ export declare const $pullAll: (obj: AnyObject, expr: Record<string, Any[]>, arrayFilters?: AnyObject[], options?: UpdateOptions) => string[];