@antv/x6
Version:
JavaScript diagramming library that uses SVG and HTML for rendering.
12 lines (11 loc) • 366 B
TypeScript
import { Graph } from './graph';
import { Disposable } from '../common';
export declare class Base extends Disposable {
readonly graph: Graph;
get options(): import("./options").Options.Definition;
get model(): import("..").Model;
get view(): Graph.View;
constructor(graph: Graph);
protected init(): void;
}
export declare namespace Base { }