feat: first working version with parameters

This commit is contained in:
2024-04-15 18:46:34 +02:00
parent e29cb11b81
commit 0254bc1ae5
45 changed files with 389 additions and 351 deletions

View File

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