我创建了一个TypeScript文件,然后将ts文件拖到HTML,Visual Studio在我的HTML文件中添加了引用。
现在,尽管ts文件具有类型信息,但HTML中的Intellisense却不提供它们。
如何从HTML文件中引用的ts文件制作Intellisense提示类型信息?
答案 0 :(得分:0)
您可以编写此MSDN中提到的JSDoc,用于HTML编辑器Intellisense。
https://msdn.microsoft.com/en-us/library/mt162307.aspx?f=255&MSPPError=-2147217396
/** @description Determines the area of a circle that has the specified radius parameter.
* @param {number} radius The radius of the circle.
* @return {number}
*/
function getArea(radius) {
var areaVal;
areaVal = Math.PI * radius * radius;
return areaVal;
}