File size: 668 Bytes
82ea528
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
export type * from './liteGraph.types.js';
import type { IWidget as IWidgetOld, LGraphNode as TypeGraphNode, TypeLiteGraph } from './liteGraph.types.js';
declare const LGraphNode: typeof TypeGraphNode;
export interface IWidget extends IWidgetOld {
    onRemove?: () => void;
    serializeValue?: () => Promise<void>;
}
export declare class TLGraphNode extends LGraphNode {
    static category: string;
    static shape: number;
    static color: string;
    static bgcolor: string;
    static collapsable: boolean;
    isVirtualNode?: boolean;
    widgets_values?: any[];
    name?: string;
    prototype: TLGraphNode;
}
export declare const LiteGraph: TypeLiteGraph;