@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) • 474 B
TypeScript
import { AbstractConstructor, Constructor } from '../constructor';
import { IHasHostElement } from '../../i-has-host-element';
import { ISelectable } from './i-selectable';
export declare const F_SELECTED_CLASS = "f-selected";
type CanChangeSelectionConstructor = Constructor<ISelectable> & AbstractConstructor<ISelectable>;
export declare function mixinChangeSelection<T extends AbstractConstructor<IHasHostElement>>(base: T): CanChangeSelectionConstructor & T;
export {};