Hi, it will be useful to be able to document generic parameters: ``` TypeScript /** The foo class. * @template TFirst ... * @template TSecond ... */ class Foo<TFirst, TSecond> { } var foo = new Foo< // Info ```