Skip to main content

Home > @jsplumbtoolkit/browser-ui > DragGroupSpec

DragGroupSpec type

Definition of a drag group membership - either just the id of a drag group, or the id of a drag group and whether or not this element plays an active role in the drag group.

Signature:

export declare type DragGroupSpec = string | {
id: string;
active: boolean;
};