UNPKG

@shopware-ag/dive

Version:

Shopware Spatial Framework

15 lines (12 loc) 334 B
/** * Interface for objects that can be hovered in the scene. * * @module */ import { type DraggableEvent } from '../toolbox/BaseTool'; export interface DIVEDraggable { isDraggable: true; onDragStart?: (e: DraggableEvent) => void; onDrag?: (e: DraggableEvent) => void; onDragEnd?: (e: DraggableEvent) => void; }