/** * Get the difference between two sets. The difference is the elements that are in the original set but not in the compare set. * @param orignalSet * @param compareSet */ export declare function getSetDifference(orignalSet: Set, compareSet: Set): Set; //# sourceMappingURL=get-set-difference.d.ts.map