Comparing version 1.0.0-beta.4 to 1.0.0-beta.5
/*! | ||
* rete v1.0.0-beta.4 | ||
* rete v1.0.0-beta.5 | ||
* (c) 2018 Ni55aN | ||
@@ -4,0 +4,0 @@ * Released under the MIT license. |
/*! | ||
* rete v1.0.0-beta.4 | ||
* rete v1.0.0-beta.5 | ||
* (c) 2018 Ni55aN | ||
@@ -4,0 +4,0 @@ * Released under the MIT license. |
/*! | ||
* rete v1.0.0-beta.4 | ||
* rete v1.0.0-beta.5 | ||
* (c) 2018 Ni55aN | ||
@@ -4,0 +4,0 @@ * Released under the MIT license. |
{ | ||
"name": "rete", | ||
"version": "1.0.0-beta.4", | ||
"version": "1.0.0-beta.5", | ||
"description": "JavaScript framework", | ||
@@ -5,0 +5,0 @@ "main": "build/rete.min.js", |
@@ -80,5 +80,5 @@ import {Engine, Context, Events, Component as ComponentWorker, Emitter} from './engine/engine.d'; | ||
inputs: Input[]; | ||
outputs: Output[]; | ||
controls: Control[]; | ||
inputs: Map<string, Input>; | ||
outputs: Map<string, Output>; | ||
controls: Map<string, Control>; | ||
data: any; | ||
@@ -91,5 +91,5 @@ meta: any; | ||
addControl(control: Control, index?: number); | ||
addInput(input: Input, index?: number); | ||
addOutput(output: Output, index?: number); | ||
addControl(control: Control); | ||
addInput(input: Input); | ||
addOutput(output: Output); | ||
getConnections(type); | ||
@@ -153,2 +153,3 @@ | ||
parent: Input | Node; | ||
key: string; | ||
constructor(key: string); | ||
@@ -155,0 +156,0 @@ |
Sorry, the diff of this file is too big to display
4224