@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) • 340 B
TypeScript
import { IFFlowStateNode } from './i-f-flow-state-node';
import { IFFlowStateConnection } from './i-f-flow-state-connection';
import { IPoint } from '@foblex/2d';
export interface IFFlowState {
position: IPoint;
scale: number;
nodes: IFFlowStateNode[];
groups: IFFlowStateNode[];
connections: IFFlowStateConnection[];
}