@xylabs/set 4.13.3 → 4.13.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
- export declare const difference: <TKey>(a: Set<TKey>, b: Set<TKey>) => Set<TKey>;
2
-
3
- export declare const intersection: <TKey>(a: Set<TKey>, b: Set<TKey>) => Set<TKey>;
4
-
5
- export declare const union: <TKey>(a: Set<TKey>, b: Set<TKey>) => Set<TKey>;
6
-
7
- export { }
1
+ declare const difference: <TKey>(a: Set<TKey>, b: Set<TKey>) => Set<TKey>;
2
+
3
+ declare const intersection: <TKey>(a: Set<TKey>, b: Set<TKey>) => Set<TKey>;
4
+
5
+ declare const union: <TKey>(a: Set<TKey>, b: Set<TKey>) => Set<TKey>;
6
+
7
+ export { difference, intersection, union };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xylabs/set",
3
- "version": "4.13.3",
3
+ "version": "4.13.5",
4
4
  "description": "Base functionality used throughout XY Labs TypeScript/JavaScript libraries",
5
5
  "keywords": [
6
6
  "set",
@@ -39,8 +39,8 @@
39
39
  "packages/**/*"
40
40
  ],
41
41
  "devDependencies": {
42
- "@xylabs/ts-scripts-yarn3": "^7.0.0-rc.7",
43
- "@xylabs/tsconfig": "^7.0.0-rc.7",
42
+ "@xylabs/ts-scripts-yarn3": "^7.0.0-rc.8",
43
+ "@xylabs/tsconfig": "^7.0.0-rc.8",
44
44
  "typescript": "^5.8.3",
45
45
  "vitest": "^3.2.4"
46
46
  },