UNPKG

337 BTypeScriptView Raw
1declare module "@extra-array/interpolate" {
2import type { combineFn } from "./_types";
3/**
4 * Estimates new values between existing ones.
5 * @param x an array
6 * @param fc combine function (a, b)
7 */
8declare function interpolate<T>(x: Iterable<T>, fc: combineFn<T>): T[];
9export = interpolate;
10//# sourceMappingURL=interpolate.d.ts.map}