# MoveOptions
Options for moving a node in the hierarchy.

{/* Do not edit this file. It is automatically generated by API Documenter. */}

## MoveOptions type

Options for moving a node in the hierarchy.

**Signature:**

```typescript
type MoveOptions<T = Layer | Shape> =
  | {
      to: Parent<T>;
    }
  | {
      before: Sibling<T>;
    }
  | {
      after: Sibling<T>;
    };
```

**References:** [Layer](/en/creator-api/nodes/layer), [Shape](/en/creator-api/nodes/shape), [Parent](/en/creator-api/types/parent), [Sibling](/en/creator-api/types/sibling)
