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