@param@param and @returns@returns doesn’t work with deno doc or JSR—they ignore the types, likely because they rely on .d.ts.d.ts files for type information. This seems limiting for *.js*.js files but might be a technical constraint..d.ts.d.ts files following https://docs.deno.com/runtime/fundamentals/typescript/, however:.d.ts.d.ts seems mutually exclusive in deno docdeno doc, forcing me to move all comments in .d.ts.d.ts, leaving the source undocumented..d.ts.d.ts types for imports (a main.jsmain.js, but still fails on add.jsadd.js), deno checkdeno check fails on both main.jsmain.js and add.jsadd.js with errors like: error: TS7006 [ERROR]: Parameter 'a' implicitly has an 'any' type.error: TS7006 [ERROR]: Parameter 'a' implicitly has an 'any' type..@ts-self-types@ts-self-types for both the source (add.jsadd.js) and the importer (main.jsmain.js)?deno docdeno doc and JSR without .d.ts.d.ts files?Join the Discord to continue the conversation