declare module "@extra-array/union" { import type { compareFn, mapFn } from "./_types"; /** * Gives values present in any array. * @param x an array * @param y another array * @param fc compare function (a, b) * @param fm map function (v, i, x) */ declare function union(x: T[], y: Iterable, fc?: compareFn, fm?: mapFn): T[]; export = union; //# sourceMappingURL=union.d.ts.map}