tree-multimap-typed 1.44.0 → 1.44.1

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,6 +1 @@
1
1
  export type TopologicalStatus = 0 | 1 | 2;
2
- export declare enum TopologicalProperty {
3
- VAL = "VAL",
4
- NODE = "NODE",
5
- ID = "ID"
6
- }
@@ -1,9 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TopologicalProperty = void 0;
4
- var TopologicalProperty;
5
- (function (TopologicalProperty) {
6
- TopologicalProperty["VAL"] = "VAL";
7
- TopologicalProperty["NODE"] = "NODE";
8
- TopologicalProperty["ID"] = "ID";
9
- })(TopologicalProperty = exports.TopologicalProperty || (exports.TopologicalProperty = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tree-multimap-typed",
3
- "version": "1.44.0",
3
+ "version": "1.44.1",
4
4
  "description": "Tree Multiset, AVLTree, BST, Binary Tree. Javascript & Typescript Data Structure.",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -179,6 +179,6 @@
179
179
  "typescript": "^4.9.5"
180
180
  },
181
181
  "dependencies": {
182
- "data-structure-typed": "^1.44.0"
182
+ "data-structure-typed": "^1.44.1"
183
183
  }
184
184
  }
@@ -1,8 +1,2 @@
1
1
  // 0 means unknown, 1 means visiting, 2 means visited;
2
2
  export type TopologicalStatus = 0 | 1 | 2;
3
-
4
- export enum TopologicalProperty {
5
- VAL = 'VAL',
6
- NODE = 'NODE',
7
- ID = 'ID'
8
- }