UNPKG

159 BTypeScriptView Raw
1/**
2 * Checks if two sets are equal
3 */
4declare function equalsSet<T>(one: Set<T>, two: Set<T>): boolean;
5
6declare namespace equalsSet {}
7
8export = equalsSet;