LmnDragDropEvent
Generic types: | DRAGGABLE_DATA DROP_AREA_DATA |
A drag and drop base event.
Presentation
type LmnDragDropEvent = {
/** The native event of the drag and drop API. */
nativeEvent: DragEvent;
/** The ref to the draggable elements. */
draggables: Array<LmnDraggableRef <DRAGGABLE_DATA, DROP_AREA_DATA>>;
};