JasonSmithSO's picture
Upload 304 files
d051564 verified
raw
history blame contribute delete
210 Bytes
interface ComfyApi extends EventTarget {
getNodeDefs(): any;
apiURL(url: string): string;
queuePrompt(num: number, data: { output: {}; workflow: {} }): Promise<{}>;
}
export declare const api: ComfyApi;