UNPKG

@esri/calcite-components

Version:

Web Components for Esri's Calcite Design System.

7 lines (6 loc) 296 B
import type { SortableEvent } from "sortablejs"; export interface DragDetail<To extends HTMLElement = HTMLElement, From extends HTMLElement = HTMLElement, Drag extends HTMLElement = HTMLElement> extends Pick<SortableEvent, "newIndex" | "oldIndex"> { toEl: To; fromEl: From; dragEl: Drag; }