10 lines
421 B
JavaScript
10 lines
421 B
JavaScript
/**
|
|
* Public entry point for the racket-wiki diagram engine.
|
|
*
|
|
* CMap application code imports DiagramEngine explicitly. The Cmap alias is
|
|
* retained as an exported name for code that describes the visual surface as
|
|
* a CMap, without installing another global on window.
|
|
*/
|
|
export { DiagramEngine, DiagramEngine as Cmap } from "./engine/diagram-engine.js";
|
|
export { DiagramGroup } from "./engine/diagram-group.js";
|