UNPKG

@foblex/flow

Version:

An Angular library designed to simplify the creation and manipulation of dynamic flow. Provides components for flows, nodes, and connections, automating node manipulation and inter-node connections.

11 lines (10 loc) 287 B
export interface ISelectable { fId: string; fSelectionDisabled: boolean; hostElement: HTMLElement | SVGElement; markAsSelected(): void; unmarkAsSelected(): void; isSelected(): boolean; markChildrenAsSelected?(): void; unmarkChildrenAsSelected?(): void; }