@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.
12 lines (11 loc) • 326 B
TypeScript
import { IPoint, ISize } from '@foblex/2d';
import { IFFlowStateConnector } from './i-f-flow-state-connector';
export interface IFFlowStateNode {
id: string;
parentId?: string;
position: IPoint;
size: ISize;
fInputs: IFFlowStateConnector[];
fOutputs: IFFlowStateConnector[];
isSelected: boolean;
}