chore(examples): cleanup

This commit is contained in:
moklick
2023-11-08 17:44:51 +01:00
parent e83079c5cd
commit d82a54fa5b
21 changed files with 700 additions and 557 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
import { Edge, Node, ReactFlowProps } from '@xyflow/react';
declare global {
interface GenericTestCase {
interface FlowConfig {
flowProps: Omit<ReactFlowProps, 'nodes' | 'edges'> & { nodes: Node[]; edges: Edge[] };
}
}