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