feat: some moving around

This commit is contained in:
2024-04-15 22:13:43 +02:00
parent 0254bc1ae5
commit dec205b234
86 changed files with 505 additions and 409 deletions

View File

@@ -89,6 +89,7 @@ export type Graph = {
title?: string;
lastModified?: string;
},
settings?: Record<string, any>,
nodes: Node[];
edges: [number, number, number, string][];
}

View File

@@ -26,11 +26,13 @@ type NodeInputSelect = {
type NodeInputSeed = {
type: "seed"
value?: number;
}
type DefaultOptions = {
internal?: boolean;
external?: boolean;
setting?: string;
label?: string;
}