6 ms·
Do you mean native JSDoc namepaths like /** * @type {module:look/here~MyType} */ or TypeScript "JSDoc" imports like /** * @type {typeof
by dTP90pN 3y ago
Do you mean native JSDoc namepaths like
/**
* @type {module:look/here~MyType}
*/
or TypeScript "JSDoc" imports like
/**
* @type {typeof import("./look/here").MyType}
*/
or both?
- mirekrusin 3y agoI meant star type imports or rather lack of it.