Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

undirected-graph-typed

Package Overview
Dependencies
Maintainers
0
Versions
172
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

undirected-graph-typed - npm Package Compare versions

Comparing version 1.54.1 to 1.54.2

dist/types/data-structures/binary-tree/red-black-tree.d.ts

4

dist/index.d.ts
/**
* data-structure-typed
*
* @author Tyler Zeng
* @copyright Copyright (c) 2022 Tyler Zeng <zrwusa@gmail.com>
* @author Pablo Zeng
* @copyright Copyright (c) 2022 Pablo Zeng <zrwusa@gmail.com>
* @license MIT License

@@ -7,0 +7,0 @@ */

@@ -20,7 +20,6 @@ "use strict";

*
* @author Tyler Zeng
* @copyright Copyright (c) 2022 Tyler Zeng <zrwusa@gmail.com>
* @author Pablo Zeng
* @copyright Copyright (c) 2022 Pablo Zeng <zrwusa@gmail.com>
* @license MIT License
*/
// export { UndirectedVertex, UndirectedEdge, UndirectedGraph } from 'data-structure-typed';
__exportStar(require("./data-structures/graph/undirected-graph"), exports);

@@ -27,0 +26,0 @@ __exportStar(require("./types/data-structures/graph/undirected-graph"), exports);

@@ -6,5 +6,5 @@ export * from './binary-tree';

export * from './avl-tree-multi-map';
export * from './rb-tree';
export * from './red-black-tree';
export * from './tree-multi-map';
export * from './tree-counter';
export * from './avl-tree-counter';

@@ -22,5 +22,5 @@ "use strict";

__exportStar(require("./avl-tree-multi-map"), exports);
__exportStar(require("./rb-tree"), exports);
__exportStar(require("./red-black-tree"), exports);
__exportStar(require("./tree-multi-map"), exports);
__exportStar(require("./tree-counter"), exports);
__exportStar(require("./avl-tree-counter"), exports);

@@ -1,2 +0,2 @@

import type { RedBlackTreeOptions } from './rb-tree';
import type { RedBlackTreeOptions } from './red-black-tree';
export type TreeCounterOptions<K, V, R> = RedBlackTreeOptions<K, V, R> & {};

@@ -1,2 +0,2 @@

import type { RedBlackTreeOptions } from './rb-tree';
import type { RedBlackTreeOptions } from './red-black-tree';
export type TreeMultiMapOptions<K, V, R> = Omit<RedBlackTreeOptions<K, V, R>, 'isMapMode'> & {};
{
"name": "undirected-graph-typed",
"version": "1.54.1",
"version": "1.54.2",
"description": "Undirected Graph. Javascript & Typescript Data Structure.",

@@ -124,3 +124,3 @@ "main": "dist/index.js",

],
"author": "Tyler Zeng zrwusa@gmail.com",
"author": "Pablo Zeng zrwusa@gmail.com",
"license": "MIT",

@@ -149,4 +149,4 @@ "bugs": {

"dependencies": {
"data-structure-typed": "^1.54.1"
"data-structure-typed": "^1.54.2"
}
}
/**
* data-structure-typed
*
* @author Tyler Zeng
* @copyright Copyright (c) 2022 Tyler Zeng <zrwusa@gmail.com>
* @author Pablo Zeng
* @copyright Copyright (c) 2022 Pablo Zeng <zrwusa@gmail.com>
* @license MIT License
*/
// export { UndirectedVertex, UndirectedEdge, UndirectedGraph } from 'data-structure-typed';
export * from './data-structures/graph/undirected-graph';

@@ -10,0 +9,0 @@ export * from './types/data-structures/graph/undirected-graph';

@@ -6,5 +6,5 @@ export * from './binary-tree';

export * from './avl-tree-multi-map';
export * from './rb-tree';
export * from './red-black-tree';
export * from './tree-multi-map';
export * from './tree-counter';
export * from './avl-tree-counter';

@@ -1,3 +0,3 @@

import type { RedBlackTreeOptions } from './rb-tree';
import type { RedBlackTreeOptions } from './red-black-tree';
export type TreeCounterOptions<K, V, R> = RedBlackTreeOptions<K, V, R> & {};

@@ -1,3 +0,3 @@

import type { RedBlackTreeOptions } from './rb-tree';
import type { RedBlackTreeOptions } from './red-black-tree';
export type TreeMultiMapOptions<K, V, R> = Omit<RedBlackTreeOptions<K, V, R>, 'isMapMode'> & {}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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