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