@maxgraph/core
Version:
maxGraph is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.
7 lines (6 loc) • 476 B
TypeScript
import type { AbstractGraph } from '../AbstractGraph.js';
type PartialGraph = Pick<AbstractGraph, 'getView' | 'getGraphBounds' | 'getPageFormat' | 'getPageScale' | 'getMinPageBreakDist' | 'getPageBreakColor' | 'getDialect' | 'isPageBreakDashed'>;
type PartialPageBreaks = Pick<AbstractGraph, 'horizontalPageBreaks' | 'verticalPageBreaks' | 'updatePageBreaks'>;
type PartialType = PartialGraph & PartialPageBreaks;
export declare const PageBreaksMixin: PartialType;
export {};