@maxgraph/core
Version:
maxGraph is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.
12 lines (11 loc) • 339 B
TypeScript
import { CellCodec } from '../CellCodec.js';
import type Codec from '../../Codec.js';
/**
* Add support for the legacy `mxGraph` format of {@link Cell}.
*
* @category Serialization with Codecs
*/
export declare class mxCellCodec extends CellCodec {
getName(): string;
decodeAttribute(dec: Codec, attr: any, obj?: any): void;
}