avl-tree-typed 1.37.3 → 1.37.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.
package/dist/index.d.ts CHANGED
@@ -5,4 +5,6 @@
5
5
  * @copyright Copyright (c) 2022 Tyler Zeng <zrwusa@gmail.com>
6
6
  * @license MIT License
7
7
  */
8
- export * from 'data-structure-typed';
8
+ export * from 'data-structure-typed/src/data-structures/binary-tree/avl-tree';
9
+ export * from 'data-structure-typed/src/types/data-structures/binary-tree/avl-tree';
10
+ export * from 'data-structure-typed/src/types/helpers';
package/dist/index.js CHANGED
@@ -22,4 +22,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
22
22
  * @license MIT License
23
23
  */
24
24
  // export { AVLTreeNode, AVLTree, CP, FamilyPosition, TopologicalProperty, IterationType } from 'data-structure-typed';
25
- __exportStar(require("data-structure-typed"), exports);
25
+ __exportStar(require("data-structure-typed/src/data-structures/binary-tree/avl-tree"), exports);
26
+ __exportStar(require("data-structure-typed/src/types/data-structures/binary-tree/avl-tree"), exports);
27
+ __exportStar(require("data-structure-typed/src/types/helpers"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "avl-tree-typed",
3
- "version": "1.37.3",
3
+ "version": "1.37.5",
4
4
  "description": "AVLTree(Adelson-Velsky and Landis Tree). Javascript & Typescript Data Structure.",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -162,6 +162,6 @@
162
162
  "typescript": "^4.9.5"
163
163
  },
164
164
  "dependencies": {
165
- "data-structure-typed": "^1.37.3"
165
+ "data-structure-typed": "^1.37.5"
166
166
  }
167
167
  }
package/src/index.ts CHANGED
@@ -6,4 +6,6 @@
6
6
  * @license MIT License
7
7
  */
8
8
  // export { AVLTreeNode, AVLTree, CP, FamilyPosition, TopologicalProperty, IterationType } from 'data-structure-typed';
9
- export * from 'data-structure-typed';
9
+ export * from 'data-structure-typed/src/data-structures/binary-tree/avl-tree';
10
+ export * from 'data-structure-typed/src/types/data-structures/binary-tree/avl-tree';
11
+ export * from 'data-structure-typed/src/types/helpers';