base.d.ts 372 B

1234567891011
  1. import { Disposable } from '@antv/x6-common';
  2. import { Graph } from './graph';
  3. export declare class Base extends Disposable {
  4. readonly graph: Graph;
  5. get options(): import("./options").Options.Definition;
  6. get model(): import("..").Model;
  7. get view(): Graph.View;
  8. constructor(graph: Graph);
  9. protected init(): void;
  10. }
  11. export declare namespace Base { }