A tuple type (typically the arguments of a function).
The position in the tuple to extract the function type from ('auto' for the first function type, or a number for a specific position).
The function type at the specified position in the tuple T.
Generated using TypeDoc
GetFunctionType<T, TPosition> Extracts a function type from a tuple T at a specific position (TPosition). If TPosition is 'auto', the type of the first function in the tuple is returned. If TPosition is a number, the function type at that index is returned.