We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b277b18 commit 6e077ceCopy full SHA for 6e077ce
1 file changed
types/npmcli__arborist/index.d.ts
@@ -202,9 +202,9 @@ declare namespace Arborist {
202
* Edges in the dependency graph indicating nodes that this node depends
203
* on, which resolve its dependencies.
204
*/
205
- edgesOut: Edge[];
+ edgesOut: Map<string, Edge>;
206
/** Edges in the dependency graph indicating nodes that depend on this node. */
207
- edgesIn: Edge[];
+ edgesIn: Set<Edge>;
208
209
/** True if this package is not required by any other for any reason. False for top of tree. */
210
extraneous: boolean;
0 commit comments