Skip to content

Commit

Permalink
chore(types): correct type used
Browse files Browse the repository at this point in the history
  • Loading branch information
nikku committed Sep 9, 2024
1 parent 7737f9d commit 93e59cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/features/append-preview/AppendPreview.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const round = Math.round;
* @typedef {import('diagram-js/lib/layout/ConnectionDocking').default} ConnectionDocking
* @typedef {import('../modeling/ElementFactory').default} ElementFactory
* @typedef {import('diagram-js/lib/core/EventBus').default} EventBus
* @typedef {import('diagram-js/lib/layout/ManhattanLayout').default} ManhattanLayout
* @typedef {import('../modeling/BpmnLayouter').default} BpmnLayouter
* @typedef {import('diagram-js/lib/features/rules/Rules').default} Rules
*
* @typedef {import('../../model/Types').Shape} Shape
Expand All @@ -23,7 +23,7 @@ const round = Math.round;
* @param {ConnectionDocking} connectionDocking
* @param {ElementFactory} elementFactory
* @param {EventBus} eventBus
* @param {ManhattanLayout} layouter
* @param {BpmnLayouter} layouter
* @param {Rules} rules
*/
export default function AppendPreview(complexPreview, connectionDocking, elementFactory, eventBus, layouter, rules) {
Expand Down

0 comments on commit 93e59cb

Please sign in to comment.