Merge pull request #5424 from 4t145/fix-export-builtin-edge-type

fix: export BuiltInEdge type for svelte
This commit is contained in:
Moritz Klack
2025-08-07 07:27:28 +02:00
committed by GitHub
2 changed files with 7 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@xyflow/svelte': patch
---
Export `BuiltInEdge` type
+2 -1
View File
@@ -53,7 +53,8 @@ export type {
StepEdgeProps,
StraightEdgeProps,
EdgeTypes,
DefaultEdgeOptions
DefaultEdgeOptions,
BuiltInEdge,
} from '$lib/types/edges';
export type * from '$lib/types/general';
export type { Node, NodeTypes, BuiltInNode, NodeProps, InternalNode } from '$lib/types/nodes';