@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) • 372 B
TypeScript
import { ILineAlignmentRect } from './i-line-alignment-rect';
import { BrowserService } from '@foblex/platform';
export declare class LineElement {
private readonly hostElement;
private readonly element;
constructor(fBrowser: BrowserService, hostElement: HTMLElement);
hide(): void;
show(): void;
draw(object: Partial<ILineAlignmentRect>): void;
}