feat: did some stuff

This commit is contained in:
2024-04-05 18:03:23 +02:00
parent 8035b26750
commit b3780fdf96
34 changed files with 355 additions and 54 deletions

View File

@@ -34,7 +34,7 @@ export type NodeType = {
meta?: {
title?: string;
},
execute?: (inputs: Record<string, string | number | boolean>) => unknown;
execute?: (...args: (string | number | boolean)[]) => unknown;
}
export type Socket = {

View File

@@ -26,6 +26,7 @@ type NodeInputSelect = {
type DefaultOptions = {
internal?: boolean;
external?: boolean;
title?: string;
}