declare module "@extra-set/difference" { /** * Gives values of set not present in others. * @param x a set * @param y another set */ declare function difference(x: Set, y: Set): Set; export = difference; //# sourceMappingURL=difference.d.ts.map}