Serialize NodeInputSlot.widget (#622)

Serialize linked widget on node input slot properly according to current
save format in
76818b54e6/src/extensions/core/widgetInputs.ts
This commit is contained in:
Chenlei Hu
2025-02-26 14:15:31 -05:00
committed by GitHub
parent c166a34fd8
commit d20aab757c
5 changed files with 54 additions and 17 deletions

View File

@@ -41,7 +41,7 @@ export interface SerialisableGraph {
}
export type ISerialisedNodeInputSlot = Omit<INodeInputSlot, "_layoutElement"> & {
widget?: { name?: string }
widget?: { name: string }
}
export type ISerialisedNodeOutputSlot = Omit<INodeOutputSlot, "_layoutElement" | "_data">