Partially quoting the FDIS, ยง14.5.3:
1 A template parameter pack is a template parameter that accepts zero or more template arguments.
2 A function parameter pack is a function parameter that accepts zero or more function arguments.
3 A parameter pack is either a template parameter pack or a function parameter pack.
4 A pack expansion consists of a pattern and an ellipsis, the instantiation of which produces zero or more instantiations of the pattern in a list.
So in your example,
typename... Args is a template parameter pack (and consequently also a parameter pack)
Args... params is a function parameter pack (and consequently also a parameter pack)
sizeof...(Args) is a pack expansion wherein Args is the pattern (an identifier in this context).