Spaces:
Running
on
L40S
Running
on
L40S
File size: 502 Bytes
4450790 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import type { LGraphNode } from "typings/litegraph.js";
import type { ComfyApp, ComfyWidget } from "../typings/comfy.js";
type ComfyWidgetFn = (
node: LGraphNode,
inputName: string,
inputData: any,
app: ComfyApp,
) => { widget: ComfyWidget };
/**
* A dummy ComfyWidgets that we can import from our code, which we'll rewrite later to the comfyui
* hosted widgets.js
*/
export declare const ComfyWidgets: {
COMBO: ComfyWidgetFn;
STRING: ComfyWidgetFn;
[key: string]: ComfyWidgetFn;
};
|