TypeScript Version: 2.5.2
Code
interface IMyInterface
{
/**
* my property a
*/
a: string;
}
let o: IMyInterface = { a: "xyz" };
Expected behavior:
When hovering over the property a in the anonymous object, I would expect to see the documentation
for interface IMyInterface property a.
Actual behavior:
tooltip shows only "(property) a : string"