UNPKG

@antv/x6

Version:

JavaScript diagramming library that uses SVG and HTML for rendering.

15 lines (14 loc) 449 B
import { Base } from './base'; import { MiniMap } from '../addon/minimap'; export declare class MiniMapManager extends Base { widget: MiniMap | null; protected get widgetOptions(): MiniMapManager.Options; protected init(): void; dispose(): void; } export declare namespace MiniMapManager { interface Options extends Omit<MiniMap.Options, 'graph' | 'container'> { enabled: boolean; container: HTMLElement; } }