[Cleanup] Remove remaining legacy subgraph content (#458)

This commit is contained in:
Chenlei Hu
2025-02-03 20:45:17 -08:00
committed by GitHub
parent a3fa551a17
commit 9b5f67aadf
4 changed files with 0 additions and 86 deletions

View File

@@ -212,7 +212,6 @@ export interface INodeSlot {
dir?: LinkDirection
removable?: boolean
shape?: RenderShape
not_subgraph_input?: boolean
color_off?: CanvasColour
color_on?: CanvasColour
locked?: boolean
@@ -232,14 +231,12 @@ export interface INodeFlags {
export interface INodeInputSlot extends INodeSlot {
link: LinkId | null
not_subgraph_input?: boolean
}
export interface INodeOutputSlot extends INodeSlot {
links: LinkId[] | null
_data?: unknown
slot_index?: number
not_subgraph_output?: boolean
}
/** Links */