mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-03 06:47:33 +00:00
nodes attribute in selectNodes function is optional
This commit is contained in:
2
src/litegraph.d.ts
vendored
2
src/litegraph.d.ts
vendored
@@ -1216,7 +1216,7 @@ export declare class LGraphCanvas {
|
||||
/** selects a given node (or adds it to the current selection) */
|
||||
selectNode(node: LGraphNode, add?: boolean): void;
|
||||
/** selects several nodes (or adds them to the current selection) */
|
||||
selectNodes(nodes: LGraphNode[], add?: boolean): void;
|
||||
selectNodes(nodes?: LGraphNode[], add?: boolean): void;
|
||||
/** removes a node from the current selection */
|
||||
deselectNode(node: LGraphNode): void;
|
||||
/** removes all nodes from the current selection */
|
||||
|
||||
Reference in New Issue
Block a user