undirected-graph-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": "undirected-graph-typed",
3
- "version": "1.44.0",
3
+ "version": "1.44.1",
4
4
  "description": "Undirected Graph. Javascript & Typescript Data Structure.",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -145,6 +145,6 @@
145
145
  "typescript": "^4.9.5"
146
146
  },
147
147
  "dependencies": {
148
- "data-structure-typed": "^1.44.0"
148
+ "data-structure-typed": "^1.44.1"
149
149
  }
150
150
  }
@@ -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
- }