UNPKG

@stackend/api

Version:

JS bindings to api.stackend.com

10 lines 291 B
/** * Given two sets, calculate additions and removals required to construct the new set. * @param oldSet * @param newSet */ export declare function getAddedRemoved<T>(oldSet: Set<T>, newSet: Set<T>): { added: Set<T>; removed: Set<T>; }; //# sourceMappingURL=collections.d.ts.map