UNPKG

@plait/mind

Version:

Implementation of the core logic of the mind map plugin.

10 lines (9 loc) 338 B
import { PlaitBoard } from '@plait/core'; import { PlaitMindBoard } from './with-mind.board'; import { TextManage } from '@plait/common'; export interface FakeCreateNodeRef { g: SVGGElement; nodeG: SVGGElement; textManage: TextManage; } export declare const withCreateMind: (board: PlaitBoard) => PlaitBoard & PlaitMindBoard;