diff --git a/packages/core/src/types/edges.ts b/packages/core/src/types/edges.ts index 466060ef..f4945a42 100644 --- a/packages/core/src/types/edges.ts +++ b/packages/core/src/types/edges.ts @@ -86,7 +86,8 @@ export type EdgeProps = { targetHandleId?: string | null; markerStart?: string; markerEnd?: string; - pathOptions?: BezierPathOptions | SmoothStepPathOptions; + // @TODO: how can we get better types for pathOptions? + pathOptions?: any; interactionWidth?: number; };