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

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

Usage

import { undefined } from 'uxp/components';

Last updated