NodeVar.js 145 B

1234567891011121314
  1. class NodeVar {
  2. constructor( name, type ) {
  3. this.isNodeVar = true;
  4. this.name = name;
  5. this.type = type;
  6. }
  7. }
  8. export default NodeVar;