@comfyorg/comfyui-frontend-types 1.44.13 → 1.44.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1161,7 +1161,7 @@ export declare class ComfyApp {
|
|
|
1161
1161
|
/** Whether the root graph has been initialized. Safe to check without triggering error logs. */
|
|
1162
1162
|
get isGraphReady(): boolean;
|
|
1163
1163
|
canvas: LGraphCanvas;
|
|
1164
|
-
dragOverNode: LGraphNode | null;
|
|
1164
|
+
dragOverNode: Pick<LGraphNode, 'onDragDrop' | 'id'> | null;
|
|
1165
1165
|
readonly canvasElRef: ShallowRef<HTMLCanvasElement | undefined, HTMLCanvasElement | undefined>;
|
|
1166
1166
|
get canvasEl(): HTMLCanvasElement;
|
|
1167
1167
|
private configuringGraphLevel;
|