Socket
Socket
Sign inDemoInstall

directed-graph-typed

Package Overview
Dependencies
Maintainers
1
Versions
147
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

directed-graph-typed - npm Package Compare versions

Comparing version 1.44.0 to 1.44.1

5

dist/types/data-structures/graph/directed-graph.d.ts
export type TopologicalStatus = 0 | 1 | 2;
export declare enum TopologicalProperty {
VAL = "VAL",
NODE = "NODE",
ID = "ID"
}
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TopologicalProperty = void 0;
var TopologicalProperty;
(function (TopologicalProperty) {
TopologicalProperty["VAL"] = "VAL";
TopologicalProperty["NODE"] = "NODE";
TopologicalProperty["ID"] = "ID";
})(TopologicalProperty = exports.TopologicalProperty || (exports.TopologicalProperty = {}));

4

package.json
{
"name": "directed-graph-typed",
"version": "1.44.0",
"version": "1.44.1",
"description": "Directed Graph. Javascript & Typescript Data Structure.",

@@ -150,4 +150,4 @@ "main": "dist/index.js",

"dependencies": {
"data-structure-typed": "^1.44.0"
"data-structure-typed": "^1.44.1"
}
}
// 0 means unknown, 1 means visiting, 2 means visited;
export type TopologicalStatus = 0 | 1 | 2;
export enum TopologicalProperty {
VAL = 'VAL',
NODE = 'NODE',
ID = 'ID'
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc