@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) • 650 B
TypeScript
import { CalculateClosestInputRequest } from './calculate-closest-input.request';
import { IExecution } from '@foblex/mediator';
import { IClosestInput } from '../i-closest-input';
import * as i0 from "@angular/core";
export declare class CalculateClosestInputExecution implements IExecution<CalculateClosestInputRequest, IClosestInput | undefined> {
handle(payload: CalculateClosestInputRequest): IClosestInput | undefined;
private _distanceToRectangle;
private _clamp;
static ɵfac: i0.ɵɵFactoryDeclaration<CalculateClosestInputExecution, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<CalculateClosestInputExecution>;
}