2023-09-08 14:25:14 +02:00
|
|
|
export function $reflect<T>(arg: T, types?: string) : T {
|
2023-09-01 18:21:45 +02:00
|
|
|
// TODO: implement typed-function for real
|
2023-09-08 14:25:14 +02:00
|
|
|
if (!types) {
|
|
|
|
console.error('types should be resolved with runtime type information by the TypeScript plugin')
|
2023-09-01 18:21:45 +02:00
|
|
|
}
|
|
|
|
|
2023-09-08 14:10:03 +02:00
|
|
|
console.log(`INFER: Creating function with types ${types}`)
|
2023-09-01 20:54:39 +02:00
|
|
|
|
|
|
|
// TODO: here we can now turn the inputs into a real typed-function with a signature
|
2023-09-01 17:52:44 +02:00
|
|
|
return arg
|
|
|
|
}
|