← Code LabTypeScript0/50 solved · 0%
Utility Types · medium

28. Parameters Utility

Extract parameter types as a tuple.

Use `Parameters` to get the first argument type of `log(msg: string)`.
Required in your answer: Parameters<typeof log>[0]