mingo
Version:
MongoDB query language for in-memory objects
7 lines (6 loc) • 360 B
TypeScript
import { Any, AnyObject, Options } from "../../types";
import { WindowOperatorInput } from "./_internal";
/**
* Last observation carried forward. Sets values for null and missing fields in a window to the last non-null value for the field.
*/
export declare const $locf: (_: AnyObject, coll: AnyObject[], expr: WindowOperatorInput, options: Options) => Any;