declare module "@extra-array/intermix" { /** * 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(x: T[], y: T[], m?: number, n?: number, s?: number, t?: number): T[]; export = intermix; //# sourceMappingURL=intermix.d.ts.map}