ngx-svg-graphics
Version:
Small svg library to link components or svg elements with arrows and allow to drag components.
21 lines (20 loc) • 1.27 kB
TypeScript
import { OnChanges } from '@angular/core';
import { ArrowStyleConfigurationService } from "../../../services/arrow-style-configuration.service";
import { ArrowStyleConfiguration } from "../../../models/arrow-style-configuration";
import * as i0 from "@angular/core";
export declare class ArrowBetweenPointsComponent implements OnChanges {
private arrowStyleConfigService;
startX: number;
startY: number;
endX: number;
endY: number;
text?: string;
style?: string;
arrowType?: string;
arrowStyleConfiguration: ArrowStyleConfiguration;
id: string;
constructor(arrowStyleConfigService: ArrowStyleConfigurationService);
ngOnChanges(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<ArrowBetweenPointsComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ArrowBetweenPointsComponent, "[arrow-between-points]", never, { "startX": { "alias": "startX"; "required": false; }; "startY": { "alias": "startY"; "required": false; }; "endX": { "alias": "endX"; "required": false; }; "endY": { "alias": "endY"; "required": false; }; "text": { "alias": "text"; "required": false; }; "style": { "alias": "style"; "required": false; }; "arrowType": { "alias": "arrowType"; "required": false; }; }, {}, never, never, true, never>;
}