@extra-array/interpolate
Version:
Estimates new values between existing ones.
11 lines (10 loc) • 337 B
TypeScript
declare module "@extra-array/interpolate" {
import type { combineFn } from "./_types";
/**
* Estimates new values between existing ones.
* @param x an array
* @param fc combine function (a, b)
*/
declare function interpolate<T>(x: Iterable<T>, fc: combineFn<T>): T[];
export = interpolate;
//# sourceMappingURL=interpolate.d.ts.map}