@antv/x6
Version:
JavaScript diagramming library that uses SVG and HTML for rendering
19 lines • 398 B
JavaScript
import { Disposable } from '../common';
export class Base extends Disposable {
get options() {
return this.graph.options;
}
get model() {
return this.graph.model;
}
get view() {
return this.graph.view;
}
constructor(graph) {
super();
this.graph = graph;
this.init();
}
init() { }
}
//# sourceMappingURL=base.js.map