15 lines
180 B
JavaScript
15 lines
180 B
JavaScript
|
class NodeAttribute {
|
||
|
|
||
|
constructor( name, type ) {
|
||
|
|
||
|
this.name = name;
|
||
|
this.type = type;
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
NodeAttribute.prototype.isNodeAttribute = true;
|
||
|
|
||
|
export default NodeAttribute;
|