UNPKG

@plait/mind

Version:

Implementation of the core logic of the mind map plugin.

11 lines (10 loc) 340 B
import { PlaitBoard } from '@plait/core'; import { MindElement } from '../interfaces'; export interface NodeMoreRef { target: MindElement; isHovered: boolean; isHoveredCollapseArea: boolean; isHoveredExpandArea: boolean; isHoveredAddArea: boolean; } export declare const withNodeMore: (board: PlaitBoard) => PlaitBoard;