如果您使用的是Typescript(我假设从通用定义中)建议将通用类型提取到单独的接口中:
/**
* Return type of something
*/
interface PromiseReturnType {
/**
* The unique identifyer
*/
id: number
/**
* JSDoc hint for the name
*/
name: string
}
const a: Promise<PromiseReturnType> = new Promise(...)
const props = await a
props.id // you will get the hint here
我知道这个问题已经在很久以前就问过,但是我找到了一个可能很有趣的解决方案:themply在您要在新行中显示的项目之间放置一个标签。 它在VS代码以及创建的文档中起作用!
<br>