@nodl/core
Advanced tools
Comparing version 0.1.4 to 0.1.5
@@ -11,5 +11,5 @@ import { Connection } from '../Connection/Connection'; | ||
/** Node Inputs */ | ||
inputs: Record<string, Input>; | ||
abstract inputs: Record<string, Input>; | ||
/** Node Outputs */ | ||
outputs: Record<string, Output>; | ||
abstract outputs: Record<string, Output>; | ||
/** Arbitrary Data Store */ | ||
@@ -16,0 +16,0 @@ data: TData; |
@@ -12,6 +12,2 @@ "use strict"; | ||
this.name = this.constructor.name; | ||
/** Node Inputs */ | ||
this.inputs = {}; | ||
/** Node Outputs */ | ||
this.outputs = {}; | ||
/** Arbitrary Data Store */ | ||
@@ -22,4 +18,2 @@ this.data = {}; | ||
name: mobx_1.observable, | ||
inputs: mobx_1.observable, | ||
outputs: mobx_1.observable, | ||
data: mobx_1.observable, | ||
@@ -26,0 +20,0 @@ connections: mobx_1.computed, |
@@ -10,3 +10,3 @@ "use strict"; | ||
constructor(props) { | ||
super(); | ||
super(1); | ||
/** Identifier */ | ||
@@ -13,0 +13,0 @@ this.id = (0, uuid_1.v4)(); |
{ | ||
"name": "@nodl/core", | ||
"version": "0.1.4", | ||
"version": "0.1.5", | ||
"description": "Core implementation of the Nodl framework", | ||
@@ -5,0 +5,0 @@ "main": "build/index.js", |
33435
48
895