> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nanoforge.eu/llms.txt
> Use this file to discover all available pages before exploring further.

# DD variable

> DD API documentation

# DD

## Signature

```typescript theme={null}
DD: {
  readonly isDragging: boolean;
  justDragged: boolean;
  readonly node: import("konva/lib/Node").Node<import("konva/lib/Node").NodeConfig> | undefined;
  _dragElements: Map<number, {
    node: import("konva/lib/Node").Node;
    startPointerPos: import("konva/lib/types").Vector2d;
    offset: import("konva/lib/types").Vector2d;
    pointerId?: number;
    startEvent?: any;
    dragStatus: "ready" | "dragging" | "stopped";
  }>;
  _drag(evt: any): void;
  _endDragBefore(evt?: any): void;
  _endDragAfter(evt: any): void;
}
```
