Type Alias LinkOptions

LinkOptions: BaseCellOptions & {
    absoluteTextPosition?: Point;
    arrowSource?: ConnectorArrow | null;
    arrowTarget?: ConnectorArrow | null;
    firstPoint?: Point;
    isConnectedLine?: boolean;
    isConnector?: boolean;
    lastPoint?: Point;
    lineColor?: string;
    points?: Point[];
    strokeWidth?: number;
    type?: LinkType;
}