directed-graph-typed
Advanced tools
Comparing version 1.54.1 to 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 | ||
@@ -7,0 +7,0 @@ */ |
@@ -20,4 +20,4 @@ "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 | ||
@@ -24,0 +24,0 @@ */ |
@@ -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": "directed-graph-typed", | ||
"version": "1.54.1", | ||
"version": "1.54.2", | ||
"description": "Directed Graph. Javascript & Typescript Data Structure.", | ||
@@ -126,3 +126,3 @@ "main": "dist/index.js", | ||
], | ||
"author": "Tyler Zeng zrwusa@gmail.com", | ||
"author": "Pablo Zeng zrwusa@gmail.com", | ||
"license": "MIT", | ||
@@ -151,4 +151,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 | ||
@@ -7,0 +7,0 @@ */ |
@@ -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
2394750
Updateddata-structure-typed@^1.54.2