heap-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": "heap-typed",
3
- "version": "1.43.3",
3
+ "version": "1.44.1",
4
4
  "description": "Heap. Javascript & Typescript Data Structure.",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -131,6 +131,6 @@
131
131
  "typescript": "^4.9.5"
132
132
  },
133
133
  "dependencies": {
134
- "data-structure-typed": "^1.43.3"
134
+ "data-structure-typed": "^1.44.1"
135
135
  }
136
136
  }
@@ -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
- }