From 26631febf905cca9a257131c0a8f5589143ad641 Mon Sep 17 00:00:00 2001 From: Jos de Jong Date: Fri, 1 Sep 2023 20:54:39 +0200 Subject: [PATCH] add a TODO explaining the plan --- src/core/typed.ts | 2 ++ 1 file changed, 2 insertions(+) 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 }