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.

12 lines (11 loc) 394 B
import { FChannelListener } from './types'; import { FChannel } from './f-channel'; export declare class FResizeChannel extends FChannel { private _htmlElement; private _observer; private _isObserving; constructor(_htmlElement: HTMLElement | SVGElement); listen(callback: FChannelListener): () => void; stop(callback: FChannelListener): void; private _disconnect; }