@maxgraph/core
Version:
maxGraph is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.
7 lines (6 loc) • 642 B
TypeScript
import type { AbstractGraph } from '../AbstractGraph.js';
type PartialGraph = Pick<AbstractGraph, 'convertValueToString' | 'batchUpdate' | 'getDataModel' | 'getSelectionCell' | 'fireEvent' | 'isAutoSizeCell' | 'cellSizeUpdated' | 'getCurrentCellStyle' | 'isCellLocked' | 'getPlugin'>;
type PartialEditing = Pick<AbstractGraph, 'cellsEditable' | 'startEditing' | 'startEditingAtCell' | 'getEditingValue' | 'stopEditing' | 'labelChanged' | 'cellLabelChanged' | 'isEditing' | 'isCellEditable' | 'isCellsEditable' | 'setCellsEditable'>;
type PartialType = PartialGraph & PartialEditing;
export declare const EditingMixin: PartialType;
export {};