@cpfr/tootframes 1.0.12 → 1.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -159,7 +159,7 @@ declare class Node extends Widget {
159
159
  _mapNodePort(nodePort: NodePort): NodePortClipboardData;
160
160
  _copy(): NodeClipboardData;
161
161
  _onConnectionAdded(connection: NodeConnection): void;
162
- _onConnectionRemoved(connection: NodeConnection): void;
162
+ _onConnectionRemoved(connection: NodeConnection, fromOutput: NodePort, toInput: NodePort): void;
163
163
  _removeDraggedConnection(connection: NodeConnection): void;
164
164
  onAttached(): void;
165
165
  _getViewport(): NodeEditorViewport;
@@ -172,7 +172,7 @@ declare class Node extends Widget {
172
172
  addInput(name: string, canConnectCheck?: (other: NodePort) => boolean): NodePort;
173
173
  addOutput(name: string, canConnectCheck?: (other: NodePort) => boolean, allowMultipleConnections?: boolean): NodePort;
174
174
  addConnection(nodeConnection: NodeConnection): void;
175
- removeConnection(nodeConnection: NodeConnection): void;
175
+ removeConnection(nodeConnection: NodeConnection, fromOutput: NodePort, toInput: NodePort): void;
176
176
  onDragStart(mouseEvt: MouseEvent): boolean;
177
177
  onDragStarted(): void;
178
178
  onDragEnd(mouseEvt: MouseEvent): void;