File size: 210 Bytes
d051564
 
 
 
 
 
 
1
2
3
4
5
6
7
8
interface ComfyApi extends EventTarget {
  getNodeDefs(): any;
  apiURL(url: string): string;
  queuePrompt(num: number, data: { output: {}; workflow: {} }): Promise<{}>;
}

export declare const api: ComfyApi;