let aaa = {
/** */
fc: function(pa, pb){}
};
I want something like this :
let aaa = {
/**
* @param {*} pa
* @param {*} pb
*/
fc: function(pa, pb){}
};
But it gave me this :
/** @type {{ fc: (pa: any, pb: any) => void; }} */
let aaa = {
fc: function(pa, pb){}
};
I want something like this :
But it gave me this :