@plait/mind
Version:
Implementation of the core logic of the mind map plugin.
6 lines (5 loc) • 396 B
TypeScript
import { PlaitBoard } from '@plait/core';
import { MindElement } from '../interfaces';
import { PlaitMindBoard } from './with-mind.board';
export declare const withMindFragment: (baseBoard: PlaitBoard) => PlaitBoard & PlaitMindBoard;
export declare const getNextSelectedElement: (board: PlaitBoard, firstLevelElements: MindElement[]) => MindElement<import("../interfaces").BaseData> | undefined;