The Call function invokes Generic type.
⚠️ This function is a Script evalutation action.
Example usage is shown below.
const G = Type.Generic([
Type.Parameter('T')
], Type.Array(Type.Ref('T')))
const S = Type.Call(G, [Type.Number()]) // const S: TArray<TNumber>
Use the IsCall function to guard values of this type.
Type.IsCall(value) // value is TCall