Merge branch 'main' into migrate/svelte5

This commit is contained in:
peterkogo
2024-12-09 15:59:30 +01:00
21 changed files with 159 additions and 64 deletions
+3 -1
View File
@@ -42,7 +42,9 @@ export type NodeTypes = Record<
export type DefaultNodeOptions = Partial<Omit<Node, 'id'>>;
export type BuiltInNode = Node<{ label: string }, 'input' | 'output' | 'default'>;
export type BuiltInNode =
| Node<{ label: string }, 'input' | 'output' | 'default'>
| Node<Record<string, never>, 'group'>;
// TODO SVELTE5 remove this
export type NodeEventMap = {