[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(
public node: LGraphNode,
public slot: number,
public input: INodeInputSlot | undefined,
public output: INodeOutputSlot | undefined,
public input: INodeInputSlot | null | undefined | any,
public output: INodeOutputSlot | null | undefined | any,
public pos: Vector2,
public afterRerouteId?: RerouteId
) {}