Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions types/npmcli__arborist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,9 @@ declare namespace Arborist {
* Edges in the dependency graph indicating nodes that this node depends
* on, which resolve its dependencies.
*/
edgesOut: Edge[];
edgesOut: Map<string, Edge>;
/** Edges in the dependency graph indicating nodes that depend on this node. */
edgesIn: Edge[];
edgesIn: Set<Edge>;

/** True if this package is not required by any other for any reason. False for top of tree. */
extraneous: boolean;
Expand Down