UNPKG

@maxgraph/core

Version:

maxGraph is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.

7 lines (6 loc) 371 B
import type { AbstractGraph } from '../AbstractGraph.js'; type PartialGraph = Pick<AbstractGraph, 'convertValueToString' | 'getPlugin' | 'getCollapseExpandResource'>; type PartialTooltip = Pick<AbstractGraph, 'getTooltip' | 'getTooltipForCell' | 'setTooltips'>; type PartialType = PartialGraph & PartialTooltip; export declare const TooltipMixin: PartialType; export {};