While diving into my ts learning journey, I came across this interesting code snippet:
export const Field:<T> (x:T) => T;
I'm having trouble wrapping my head around it.
It resembles the function definition below:
type myFunction<T> = (x: T) => T
Could this be an anonymous type definition? How do I actually use it?