graph-typed
Advanced tools
Comparing version
/** | ||
* 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,20 +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 { | ||
// AbstractVertex, | ||
// AbstractEdge, | ||
// AbstractGraph, | ||
// DirectedVertex, | ||
// DirectedEdge, | ||
// DirectedGraph, | ||
// UndirectedVertex, | ||
// UndirectedEdge, | ||
// UndirectedGraph, | ||
// MapGraph, | ||
// MapVertex, | ||
// MapEdge | ||
// } from 'data-structure-typed'; | ||
__exportStar(require("./data-structures/graph"), exports); | ||
@@ -40,0 +26,0 @@ __exportStar(require("./types/data-structures/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": "graph-typed", | ||
"version": "1.54.1", | ||
"version": "1.54.2", | ||
"description": "Graph. Javascript & Typescript Data Structure.", | ||
@@ -115,3 +115,3 @@ "main": "dist/index.js", | ||
], | ||
"author": "Tyler Zeng zrwusa@gmail.com", | ||
"author": "Pablo Zeng zrwusa@gmail.com", | ||
"license": "MIT", | ||
@@ -140,4 +140,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 { | ||
// AbstractVertex, | ||
// AbstractEdge, | ||
// AbstractGraph, | ||
// DirectedVertex, | ||
// DirectedEdge, | ||
// DirectedGraph, | ||
// UndirectedVertex, | ||
// UndirectedEdge, | ||
// UndirectedGraph, | ||
// MapGraph, | ||
// MapVertex, | ||
// MapEdge | ||
// } from 'data-structure-typed'; | ||
export * from './data-structures/graph'; | ||
@@ -23,0 +9,0 @@ export * from './types/data-structures/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
3175502
-0.02%45789
-0.06%Updated