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.

7 lines (6 loc) 461 B
import { ICanChangeVisibility } from './i-can-change-visibility'; import { IHasHostElement } from '../../i-has-host-element'; import { AbstractConstructor, Constructor } from '../constructor'; type CanChangeVisibilityConstructor = Constructor<ICanChangeVisibility> & AbstractConstructor<ICanChangeVisibility>; export declare function mixinChangeVisibility<T extends AbstractConstructor<IHasHostElement>>(base: T): CanChangeVisibilityConstructor & T; export {};