在档案app.js
中,我有以下
const pg = require('pg');
const Engine = require('./engine.js');
然后在engine.js
,我有这个:
class Engine {
/**
*
* @param {pg.Client} db - The pg client database object
*/
constructor(db) {
}
}
module.exports = Engine;
我想让JSDoc从app.js
识别类型pg.Client,但JSDoc只标记“any”类型。