@gravity-ui/graph
Version:
Modern graph editor component
10 lines (9 loc) • 419 B
TypeScript
import { MultipointConnection } from "./MultipointConnection";
/**
* Multipoint connection that draws segments as Bezier curves and keeps straight
* segments aligned with the configured bezier direction as lines.
* From commit a90f9c65 (ytsaurus-ui) — alternative line representation for layout graphs.
*/
export declare class BezierMultipointConnection extends MultipointConnection {
createPath(): Path2D;
}