@ts-graphviz/core
Version:
Graphviz Models for Object-Oriented Programming
15 lines (14 loc) • 393 B
JavaScript
;
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
const AttributesBase = require("./AttributesBase.cjs");
class AttributeList extends AttributesBase.AttributesBase {
constructor($$kind, attributes) {
super(attributes);
this.$$kind = $$kind;
}
get $$type() {
return "AttributeList";
}
comment;
}
exports.AttributeList = AttributeList;