fix(edges): type marker prop in EdgeProps

Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
braks
2022-12-06 17:41:46 +01:00
committed by Braks
parent 9326c580da
commit c673b04422
4 changed files with 15 additions and 10 deletions
+4 -4
View File
@@ -21,8 +21,8 @@ export interface PathFindingEdgeProps extends EdgeProps<never> {
labelBgPadding?: [number, number]
labelBgBorderRadius?: number
style?: CSSProperties
markerEnd?: string
markerStart?: string
markerEnd: string
markerStart: string
sourceHandleId?: string
targetHandleId?: string
}
@@ -46,8 +46,8 @@ export interface PerfectArrowProps {
labelBgPadding?: [number, number]
labelBgBorderRadius?: number
style?: CSSProperties
markerEnd?: string
markerStart?: string
markerEnd: string
markerStart: string
sourceHandleId?: string
targetHandleId?: string
options?: ArrowOptions