UNPKG

n8n-nodes-comfyui-media

Version:

n8n node to integrate with ComfyUI stable diffusion workflows for image to video conversion

16 lines (15 loc) 293 B
export interface ComfyUINode { inputs: Record<string, any>; class_type: string; _meta?: { title: string; }; } export interface ComfyUIWorkflow { [key: string]: ComfyUINode; } export interface ImageInfo { name: string; subfolder: string; type: string; }