NodeMenuItem<NC>: {
    description: string;
    inputTypes: GraphNode["inputTypes"];
    label: string;
    nodeClass: NC;
    outputTypes: GraphNode["outputTypes"];
    params: ConstructorParameters<NC>[0];
    path: string[];
    tags: string[];
}

Type Parameters

Type declaration

  • description: string

    Description of the node.

  • inputTypes: GraphNode["inputTypes"]
  • label: string

    Label of the node.

  • nodeClass: NC

    Function that creates the node.

  • outputTypes: GraphNode["outputTypes"]
  • params: ConstructorParameters<NC>[0]
  • path: string[]

    Menu path of the node.

  • tags: string[]

    Search tags of the node.