NodeAttribute.js 180 B

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