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.

9 lines (8 loc) 270 B
import { InjectionToken } from '@angular/core'; export declare const F_ZOOM: InjectionToken<FZoomBase>; export declare abstract class FZoomBase { abstract minimum: number; abstract maximum: number; abstract step: number; abstract dblClickStep: number; }