Skip to main content
Configuration for a CustomNode. Remarks: If no id is provided, one will be auto-generated based on the class name. The reportToClient flag defaults to false. Extends: AbstractNodeProps

Interface Definition

interface CustomNodeProps {
    executionConfig?: { [key: string]: string | number | boolean };
    id?: string;
    reportToClient?: boolean;
}

Properties

executionConfig (optional)

executionConfig?: { [key: string]: string | number | boolean }
Execution configuration for the custom node.

id (optional)

id?: string
Optional explicit node identifier. Remarks: If omitted, a stable auto-generated ID based on the class name is assigned. Inherited from: AbstractNodeProps.id

reportToClient (optional)

reportToClient?: boolean
Whether this node should report its outputs to the client. If set to true, you will see the output of this node in the GraphOutputStream. Inherited from: AbstractNodeProps.reportToClient