You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/shared/src/graph/types/graph.ts
-6Lines changed: 0 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,6 @@ import type { Scope } from '../../openApi/shared/utils/graph';
5
5
*
6
6
* @property nodeDependencies - For each node with at least one dependency, the set of normalized JSON Pointers it references via $ref. Nodes with no dependencies are omitted.
7
7
* @property nodes - Map from normalized JSON Pointer to NodeInfo for every node in the spec.
8
-
* @property reverseNodeDependencies - For each node with at least one dependent, the set of nodes that reference it via $ref. Nodes with no dependents are omitted.
9
8
*/
10
9
exporttypeGraph={
11
10
/**
@@ -17,11 +16,6 @@ export type Graph = {
17
16
* Map from normalized JSON Pointer to NodeInfo for every node in the spec.
18
17
*/
19
18
nodes: Map<string,NodeInfo>;
20
-
/**
21
-
* For each node with at least one dependent, the set of nodes that reference it via $ref.
22
-
* Nodes with no dependents are omitted from this map.
23
-
*/
24
-
reverseNodeDependencies: Map<string,Set<string>>;
25
19
/**
26
20
* For each node, the set of direct $ref targets that appear anywhere inside the node's
27
21
* subtree (the node itself and its children). This is populated during graph construction
0 commit comments