SVerticalRelation.d.ts 379 B

12345678910
  1. import { SRelation } from "./SRelation";
  2. import { SGraphItem } from "@persagy-web/graph/lib";
  3. import { Relation } from "../../types/topology/Relation";
  4. export declare class SVerticalRelation extends SRelation {
  5. data: Relation;
  6. constructor(parent: SGraphItem | null, data: Relation);
  7. vertical2Curve(): void;
  8. vertical2Line(): void;
  9. vertical2Polyline(): void;
  10. }