UNPKG

@maxgraph/core

Version:

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

22 lines (21 loc) 587 B
import ObjectCodec from '../ObjectCodec.js'; import type { AbstractGraph } from '../../view/AbstractGraph.js'; export declare const excludedFields: Array<keyof AbstractGraph>; /** * Codec for {@link Graph}s. * This class is created and registered dynamically at load time and used implicitly via {@link Codec} and the {@link CodecRegistry}. * * Transient Fields: * * - eventListeners * - view * - container * - cellRenderer * - selectionModel * - plugins * * @category Serialization with Codecs */ export declare class GraphCodec extends ObjectCodec { constructor(); }