UNPKG

@ts-graphviz/core

Version:

Graphviz Models for Object-Oriented Programming

15 lines (14 loc) 278 B
import { AttributesBase } from "./AttributesBase.js"; class AttributeList extends AttributesBase { constructor($$kind, attributes) { super(attributes); this.$$kind = $$kind; } get $$type() { return "AttributeList"; } comment; } export { AttributeList };