ts2jsdoc
ts2jsdoc copied to clipboard
Generate JSDoc from Typescript
hey there, thanks for this project, its been really useful in the [official node Slack API clients](https://github.com/slackapi/node-slack-sdk/). My use case is that the `RTMClient` class is an EventEmitter and I'd...
Function parameters' default values are missing in generated output: ```ts /** * Test function * @param input - Input number * @returns - Input plus one */ export function plusOne(input:...
Hi, Function parameters with object destructuring generates undefined as name. Please see example simplified below. I edited it on the fly while simplifying, it may have some syntax errors: ```ts...
Hi, Is there a possibility to generate short names? `ConnectionConfig` instead of `pg-test-util/lib/types/connection-config.ConnectionConfig`
For some class methods it can be convenient to define them using arrow functions, which is not currently supported by this parser. Demo: ```typescript class Timer { private intervalId: number...
Currently this repo doesn't support typescript 5 in package.json and that leads a lot of depending packages like electron-builder to not be able to upgrade to typescript 5. Tested locally...
Does it supports Javascript files as far as there's a `tsconfig.json` file in the project root, to add types to current Javascript project? Also, is it possible to overwrite the...