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