@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) • 616 B
TypeScript
import { InjectionToken } from '@angular/core';
import { ITransformModel } from '@foblex/2d';
import { IHasHostElement } from '../i-has-host-element';
import * as i0 from "@angular/core";
export declare const F_BACKGROUND: InjectionToken<FBackgroundBase>;
export declare abstract class FBackgroundBase implements IHasHostElement {
abstract hostElement: HTMLElement;
abstract setTransform(transform: ITransformModel): void;
static ɵfac: i0.ɵɵFactoryDeclaration<FBackgroundBase, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<FBackgroundBase, never, never, {}, {}, never, never, false, never>;
}