typescript-go
typescript-go copied to clipboard
Destructured interface members lack inherited JSDoc comments
Extension Version
0.20251203.1
VS Code Version
1.106.3
Operating system Version
Ubuntu x86-64, running via Windows 11 inside WSL
Steps to reproduce
- Copy this MRE:
interface FooBar { /** foo comment */ foo: number; /** bar comment */ bar: string; /** baz comment */ baz: string; } declare const fubar: FooBar; const {foo, bar, baz} = fubar; - hover over properties
- no comments
Issue
Should have hovers, as is present in normal typescript