[TS] Update type to reflect actual usage (#2788)

This commit is contained in:
filtered
2025-03-02 08:44:33 +11:00
committed by GitHub
parent 9b8f9bd597
commit bca0af82a3

View File

@@ -14,8 +14,8 @@ export class ConnectingLinkImpl implements ConnectingLink {
constructor( constructor(
public node: LGraphNode, public node: LGraphNode,
public slot: number, public slot: number,
public input: INodeInputSlot | undefined, public input: INodeInputSlot | null | undefined | any,
public output: INodeOutputSlot | undefined, public output: INodeOutputSlot | null | undefined | any,
public pos: Vector2, public pos: Vector2,
public afterRerouteId?: RerouteId public afterRerouteId?: RerouteId
) {} ) {}