Member Junction
    Preparing search index...

    Configuration for a node type displayed in the palette

    interface FlowNodeTypeConfig {
        Category?: string;
        Color: string;
        DefaultPorts?: FlowNodePort[];
        Draggable?: boolean;
        Icon: string;
        Label: string;
        MaxInstances?: number;
        Type: string;
    }
    Index

    Properties

    Category?: string

    Palette category for grouping (e.g., 'Steps', 'Loops')

    Color: string

    Hex color for the node header

    DefaultPorts?: FlowNodePort[]

    Default ports created when this node type is added

    Draggable?: boolean

    Whether this type can be dragged from the palette (default true)

    Icon: string

    Font Awesome icon class (e.g., 'fa-bolt')

    Label: string

    Display label

    MaxInstances?: number

    Maximum number of instances allowed (0 = unlimited, default 0)

    Type: string

    Unique type identifier (e.g., 'Action', 'Prompt')