Interface LGraphNodeConstructor<T>

interface LGraphNodeConstructor<T> {
    category?: string;
    class: LGraphNodeConstructorFactory<T>;
    desc: string;
    filter?: string;
    hide_in_node_lists?: boolean;
    name?: string;
    supported_extensions?: string[];
    title: string;
    title_color?: string;
    type: string;
}

Type Parameters

Properties

category?: string
desc: string
filter?: string
hide_in_node_lists?: boolean

If true, hide from the search box and Add Node menus

name?: string
supported_extensions?: string[]
title: string
title_color?: string
type: string

Type name used for serialization, like "graph/input". Should be unique across all nodes. The part before the final slash is the category, if it's not manually provided.