NodeAttribute.js 196 B

123456789101112131415
  1. class NodeAttribute {
  2. constructor( name, type, node = null ) {
  3. this.isNodeAttribute = true;
  4. this.name = name;
  5. this.type = type;
  6. this.node = node;
  7. }
  8. }
  9. export default NodeAttribute;