@xylabs/set 4.13.4 → 4.13.6
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.
- package/dist/neutral/index.d.ts +7 -7
- package/package.json +3 -3
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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
|
+
"version": "4.13.6",
|
|
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.
|
|
43
|
-
"@xylabs/tsconfig": "^7.0.0-rc.
|
|
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
|
},
|