typedoc-default-themes
typedoc-default-themes copied to clipboard
Show the type of destructuring parameter in case it has type defined
This is a follow-up PR for pull request on main repo - https://github.com/TypeStrong/typedoc/pull/621. This changes the displayed type of destructured parameter:
/**
* A function with a destructuring argument that implements interface.
*/
export function functionWithTypedDestr({name}: classes.INameInterface) { }
Before change:
After change:
No other test cases are affected by this change.
I was just looking for this. Could it be merged please?