UNPKG
queue-typed
Version:
latest (2.6.0)
2.6.0
2.5.3
2.5.2
2.5.1
2.5.0
2.4.5
2.4.4
2.4.3
2.4.2
2.4.1
2.4.0
2.3.0
2.2.8
2.2.7
2.2.6
2.2.4
2.2.3
2.2.2
2.2.1
2.2.0
2.1.2
2.1.1
2.1.0
2.0.5
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.3.3
1.3.1
Queue data structure
data-structure-typed-docs.vercel.app
zrwusa/data-structure-typed
queue-typed
/
src
/
types
/
data-structures
/
graph
/
directed-graph.ts
3 lines
(2 loc)
•
98 B
text/typescript
View Raw
1
2
3
// 0 means unknown, 1 means visiting, 2 means visited;
export
type
TopologicalStatus
=
0
|
1
|
2
;