如何让PhpStorm理解声明的变量类型:
function presentation() {
"use strict";
var
/** @type {Number} */
a,
/** @type {jQuery} */
b,
/** @type {HTMLAnchorElement} */
c;
}
PhpStorm只知道最后一个变量类型并建议其方法/属性,但它不知道变量“a”和“b”的类型。
是否可以在PhpStorm中记录类型并符合JSLint?如果是这样,怎么样?