diff --git a/core/block_svg.ts b/core/block_svg.ts index 18751eb13..b2f6c1c9c 100644 --- a/core/block_svg.ts +++ b/core/block_svg.ts @@ -1743,6 +1743,16 @@ export class BlockSvg ); } + /** + * Returns the drag strategy currently in use by this block. + * + * @internal + * @returns This block's drag strategy. + */ + getDragStrategy(): IDragStrategy { + return this.dragStrategy; + } + /** Sets the drag strategy for this block. */ setDragStrategy(dragStrategy: IDragStrategy) { this.dragStrategy = dragStrategy;