mingo
Version:
MongoDB query language for in-memory objects
7 lines (6 loc) • 352 B
TypeScript
import { Options } from "../../core";
import { AnyVal, RawObject, WindowOperatorInput } from "../../types";
/**
* Fills null and missing fields in a window using linear interpolation based on surrounding field values.
*/
export declare function $linearFill(_: RawObject, collection: RawObject[], expr: WindowOperatorInput, options: Options): AnyVal;