@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.
8 lines (7 loc) • 310 B
TypeScript
import { ITransformModel } from '@foblex/2d';
import { InjectionToken } from '@angular/core';
export declare const F_BACKGROUND_PATTERN: InjectionToken<IFBackgroundPattern>;
export interface IFBackgroundPattern {
hostElement: HTMLElement | SVGElement;
setTransform(transform: ITransformModel): void;
}