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.

10 lines (9 loc) 284 B
import { EFConnectionBehavior, EFConnectionType } from '../../../f-connection'; export interface IFFlowStateConnection { id: string; fOutputId: string; fInputId: string; fType: EFConnectionType | string; fBehavior: EFConnectionBehavior; isSelected: boolean; }