[TS] Fix event type for executing listener (#3310)

This commit is contained in:
Chenlei Hu
2025-04-02 11:16:36 -04:00
committed by GitHub
parent 8fc6840434
commit 6d09b7165f
3 changed files with 7 additions and 7 deletions

View File

@@ -162,7 +162,7 @@ export class ComfyApp {
/**
* @deprecated Use useExecutionStore().executingNodeId instead
*/
get runningNodeId(): string | null {
get runningNodeId(): NodeId | null {
return useExecutionStore().executingNodeId
}