refactor(types)!: Change ConnectionLineComponentProps to ConnectionLineProps
Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
<script lang="ts" setup>
|
||||
import { ConnectionLineComponentProps } from '~/index'
|
||||
import { ConnectionLineProps } from '~/index'
|
||||
|
||||
interface ConnectionLineProps extends ConnectionLineComponentProps {
|
||||
interface CustomConnectionLineProps extends ConnectionLineProps {
|
||||
sourceX: number
|
||||
sourceY: number
|
||||
targetX: number
|
||||
targetY: number
|
||||
}
|
||||
const props = defineProps<ConnectionLineProps>()
|
||||
const props = defineProps<CustomConnectionLineProps>()
|
||||
</script>
|
||||
<template>
|
||||
<g>
|
||||
|
||||
Reference in New Issue
Block a user