UNPKG

@antv/x6

Version:

JavaScript diagramming library that uses SVG and HTML for rendering.

9 lines (8 loc) 251 B
import { Attr } from '../attr'; import { Marker } from './index'; export interface PathMarkerOptions extends Attr.SimpleAttrs { d: string; offsetX?: number; offsetY?: number; } export declare const path: Marker.Factory<PathMarkerOptions>;