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