fix(types): edge pathOptions

This commit is contained in:
moklick
2022-09-08 18:03:48 +02:00
parent aa0b1180af
commit 7b3093169f

View File

@@ -86,7 +86,8 @@ export type EdgeProps<T = any> = {
targetHandleId?: string | null;
markerStart?: string;
markerEnd?: string;
pathOptions?: BezierPathOptions | SmoothStepPathOptions;
// @TODO: how can we get better types for pathOptions?
pathOptions?: any;
interactionWidth?: number;
};