@trii/types 2.10.482 → 2.10.483
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.
|
@@ -118,9 +118,13 @@ export interface INodeHandle {
|
|
|
118
118
|
type: 'source' | 'target';
|
|
119
119
|
position: 'left' | 'right' | 'top' | 'bottom';
|
|
120
120
|
/**
|
|
121
|
-
* Si permite múltiples conexiones
|
|
121
|
+
* Si un handle del tipo (source) permite múltiples conexiones salientes.
|
|
122
122
|
*/
|
|
123
|
-
multiple?: boolean;
|
|
123
|
+
multiple?: boolean | false;
|
|
124
|
+
/**
|
|
125
|
+
* Si un handle de tipo fuente (source) muestra el nombre definido en la UI
|
|
126
|
+
*/
|
|
127
|
+
showName?: boolean | true;
|
|
124
128
|
}
|
|
125
129
|
export interface INodeProperty {
|
|
126
130
|
/**
|