chore(types): cleanup comments

This commit is contained in:
moklick
2024-01-16 18:09:54 +01:00
parent 897c9afdf6
commit 25576cd5d5
18 changed files with 178 additions and 162 deletions
@@ -5,17 +5,17 @@ export type BaseEdgeProps = Pick<
'interactionWidth' | 'label' | 'labelStyle' | 'style'
> & {
id?: string;
/** svg path of the edge */
/** SVG path of the edge */
path: string;
/** x coordinate of the label */
/** The x coordinate of the label */
labelX?: number;
/** y coordinate of the label */
/** The y coordinate of the label */
labelY?: number;
/** marker at start of edge
/** Marker at start of edge
* @example 'url(#arrow)'
*/
markerStart?: string;
/** marker at end of edge
/** Marker at end of edge
* @example 'url(#arrow)'
*/
markerEnd?: string;