UNPKG
undirected-graph-typed
Version:
latest (2.0.4)
2.0.4
2.0.3
2.0.1
2.0.0
1.54.3
1.54.2
1.54.1
1.54.0
1.53.9
1.53.8
1.53.7
1.53.6
1.53.5
1.53.4
1.53.3
1.53.2
1.53.1
1.53.0
1.52.9
1.52.8
1.52.6
1.52.5
1.52.4
1.52.3
1.52.2
1.52.1
1.51.9
1.51.8
1.51.7
1.51.5
1.51.4
1.51.3
1.51.2
1.51.1
1.51.0
1.50.9
1.50.8
1.50.7
1.50.6
1.50.5
1.50.4
1.50.3
1.50.2
1.50.1
1.50.0
1.49.9
1.49.8
1.49.7
1.49.6
1.49.5
1.49.4
1.49.3
1.49.2
1.49.1
1.49.0
1.48.9
1.48.8
1.48.7
1.48.6
1.48.5
1.48.4
1.48.3
1.48.2
1.48.1
1.48.0
1.47.9
1.47.8
1.47.7
1.47.6
1.47.5
1.47.4
1.47.3
1.47.2
1.47.1
1.46.8
1.46.7
1.46.6
1.46.5
1.46.3
1.46.2
1.46.1
1.45.3
1.45.2
1.45.1
1.45.0
1.44.1
1.44.0
1.43.3
1.43.1
1.43.0
1.42.9
1.42.8
1.42.7
1.42.6
1.42.5
1.42.4
1.42.3
1.42.2
1.42.1
1.42.0
1.41.9
1.41.8
1.41.7
1.41.6
1.41.5
1.41.4
1.41.3
1.41.2
1.41.1
1.41.0
1.40.0
1.40.0-rc
1.39.6
1.39.5
1.39.4
1.39.3
1.39.2
1.39.1
1.39.0
1.38.9
1.38.8
1.38.7
1.38.6
1.38.5
1.38.4
1.38.2
1.38.1
1.38.0
1.37.9
1.37.8
1.37.7
1.37.6
1.37.5
1.37.4
1.37.3
1.37.2
1.37.0
1.36.9
1.36.8
1.36.6
1.36.5
1.36.4
1.36.3
1.36.0
1.35.1
1.35.0
1.34.9
1.34.8
1.34.7
1.34.6
1.34.5
1.34.4
1.34.3
1.34.2
1.34.1
1.33.8
1.33.7
1.33.6
1.32.9
1.32.2
1.32.0
1.31.0
1.21.4
1.21.3
1.21.2
1.21.0
1.20.0
1.19.9
1.19.7
1.19.6
1.19.5
1.19.3
1.3.3
1.3.2
1.3.1
Undirected Graph
data-structure-typed-docs.vercel.app
zrwusa/data-structure-typed
undirected-graph-typed
/
dist
/
types
/
data-structures
/
binary-tree
/
red-black-tree.d.ts
4 lines
(3 loc)
•
151 B
TypeScript
View Raw
1
2
3
4
import
type
{
BSTOptions
}
from
'./bst'
;
export
type
RBTNColor
=
'RED'
|
'BLACK'
;
export
type
RedBlackTreeOptions
<K, V, R> =
BSTOptions
<K, V, R> & {};