# DropPosition

Drop position types for drag and drop operations 'before': Insert as sibling before target node 'after': Insert as sibling after target node 'child': Add as last child of target node

## Definition

```tsx
export type DropPosition = 'before' | 'after' | 'child';
```

## Usage

```tsx
import { undefined } from 'uxp/components';
```
