mirror of
https://git.datalinker.icu/comfyanonymous/ComfyUI
synced 2026-08-17 18:30:03 +08:00
19 lines
543 B
TypeScript
19 lines
543 B
TypeScript
import type {ComfyApp, IStringWidget, IComboWidget, IWidget, LGraphNode} from "@comfyorg/frontend";
|
|
|
|
type ComfyWidgetFn<WidgetType extends IWidget> = (
|
|
node: LGraphNode,
|
|
inputName: string,
|
|
inputData: any,
|
|
app: ComfyApp,
|
|
) => {widget: WidgetType};
|
|
|
|
/**
|
|
* 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<IComboWidget>;
|
|
STRING: ComfyWidgetFn<IStringWidget>;
|
|
[key: string]: ComfyWidgetFn<IWidget>;
|
|
};
|