diff --git a/src/core/typed.ts b/src/core/typed.ts index f66a4ad..3306776 100644 --- a/src/core/typed.ts +++ b/src/core/typed.ts @@ -5,5 +5,7 @@ export function typed(name: string, types: string, arg: T) : T { } console.log(`TYPED-FUNCTION: Creating function "${name}" with types ${types}`) + + // TODO: here we can now turn the inputs into a real typed-function with a signature return arg }