fix(modeling): fix command handler JSDocs

This commit is contained in:
Philipp
2023-04-06 12:00:36 +02:00
committed by Philipp Fromme
parent 0676974d86
commit 716686879c
10 changed files with 173 additions and 37 deletions

View File

@ -12,11 +12,19 @@ import {
LANE_INDENTATION
} from '../util/LaneUtil';
/**
* @typedef {import('diagram-js/lib/command/CommandHandler').default} CommandHandler
*
* @typedef {import('../Modeling').default} Modeling
* @typedef {import('../../space-tool/BpmnSpaceTool').default} SpaceTool
*/
/**
* A handler that allows us to add a new lane
* above or below an existing one.
*
* @implements {CommandHandler}
*
* @param {Modeling} modeling
* @param {SpaceTool} spaceTool
*/