Type alias SerializedLGraphNode<T>

SerializedLGraphNode<T>: {
    bgcolor?: T["bgcolor"];
    boxcolor?: T["boxcolor"];
    color?: T["color"];
    flags: T["flags"];
    id: T["id"];
    inputs?: T["inputs"];
    mode: T["mode"];
    order: T["mode"];
    outputs?: T["outputs"];
    pos: T["pos"];
    properties?: T["properties"];
    shape?: T["shape"];
    size: T["size"];
    title?: T["title"];
    type: T["type"];
    widgets_values?: IWidget["value"][];
}

Type Parameters

Type declaration

  • Optional bgcolor?: T["bgcolor"]
  • Optional boxcolor?: T["boxcolor"]
  • Optional color?: T["color"]
  • flags: T["flags"]
  • id: T["id"]
  • Optional inputs?: T["inputs"]
  • mode: T["mode"]
  • order: T["mode"]
  • Optional outputs?: T["outputs"]
  • pos: T["pos"]
  • Optional properties?: T["properties"]
  • Optional shape?: T["shape"]
  • size: T["size"]
  • Optional title?: T["title"]
  • type: T["type"]
  • Optional widgets_values?: IWidget["value"][]