tree-multimap-typed 1.42.5 → 1.42.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/index.js +0 -1
- package/package.json +3 -3
- package/src/index.ts +0 -1
package/dist/index.js
CHANGED
|
@@ -21,7 +21,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
21
21
|
* @copyright Copyright (c) 2022 Tyler Zeng <zrwusa@gmail.com>
|
|
22
22
|
* @license MIT License
|
|
23
23
|
*/
|
|
24
|
-
// export { TreeMultimapNode, TreeMultimap, CP } from 'data-structure-typed';
|
|
25
24
|
__exportStar(require("./data-structures/binary-tree/tree-multimap"), exports);
|
|
26
25
|
__exportStar(require("./types/data-structures/binary-tree/tree-multimap"), exports);
|
|
27
26
|
__exportStar(require("./types/helpers"), exports);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tree-multimap-typed",
|
|
3
|
-
"version": "1.42.
|
|
3
|
+
"version": "1.42.6",
|
|
4
4
|
"description": "Tree Multiset, AVLTree, BST, Binary Tree. Javascript & Typescript Data Structure.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
|
17
|
-
"url": "git+https://github.com/zrwusa/data-structure-typed"
|
|
17
|
+
"url": "git+https://github.com/zrwusa/data-structure-typed.git"
|
|
18
18
|
},
|
|
19
19
|
"keywords": [
|
|
20
20
|
"Tree Multiset",
|
|
@@ -179,6 +179,6 @@
|
|
|
179
179
|
"typescript": "^4.9.5"
|
|
180
180
|
},
|
|
181
181
|
"dependencies": {
|
|
182
|
-
"data-structure-typed": "^1.42.
|
|
182
|
+
"data-structure-typed": "^1.42.6"
|
|
183
183
|
}
|
|
184
184
|
}
|
package/src/index.ts
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
* @copyright Copyright (c) 2022 Tyler Zeng <zrwusa@gmail.com>
|
|
6
6
|
* @license MIT License
|
|
7
7
|
*/
|
|
8
|
-
// export { TreeMultimapNode, TreeMultimap, CP } from 'data-structure-typed';
|
|
9
8
|
export * from './data-structures/binary-tree/tree-multimap';
|
|
10
9
|
export * from './types/data-structures/binary-tree/tree-multimap';
|
|
11
10
|
export * from './types/helpers';
|