@extra-array/intermix.min
Version:
Places values of an array between another.
16 lines (13 loc) • 450 B
TypeScript
declare module "@extra-array/intermix.min" {
/**
* Places values of an array between another.
* @param x an array
* @param y another array
* @param m number of values from x (1)
* @param n number of values from y (1)
* @param s step size for x (m)
* @param t step size for y (n)
*/
declare function intermix<T>(x: T[], y: T[], m?: number, n?: number, s?: number, t?: number): T[];
export = intermix;
//# sourceMappingURL=intermix.d.ts.map}