add a TODO explaining the plan

This commit is contained in:
Jos de Jong 2023-09-01 20:54:39 +02:00
parent 3967f5ce2b
commit 26631febf9
1 changed files with 2 additions and 0 deletions

View File

@ -5,5 +5,7 @@ export function typed<T>(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
}