Skip to content

Commit

Permalink
update param name
Browse files Browse the repository at this point in the history
  • Loading branch information
eatgrass authored Oct 28, 2024
1 parent 6f20a4b commit dce4a80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ declare module '@dagrejs/dagre' {
setEdge(params: Edge, value?: string | { [key: string]: any }): Graph<T>;
setEdge(sourceId: string, targetId: string, value?: string | Label, name?: string): Graph<T>;

children(v: string): string[];
children(parentName: string): string[];
hasNode(name: string): boolean;
neighbors(name: string): Array<Node<T>> | undefined;
node(id: string | Label): Node<T>;
Expand Down

0 comments on commit dce4a80

Please sign in to comment.