We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given I have the following jsdoc for a function,
/** * @param {Array<Array<string|CustomObject>>} [field] ... */ function myFunction(field) {}
This is the resulting invalid TS that I get:
static myFunction(field?: Array.<(string|CustomObject)[]): void;
Is there a correct way of handling multi-dimensional arrays of different types or is this a bug in the generation?
The text was updated successfully, but these errors were encountered:
This is a bug in the current version, but the issue belongs to #39 and #38. I will try to fix it now.
Sorry, something went wrong.
Great! Thanks for the fix 👍
wehrstedt
No branches or pull requests
Given I have the following jsdoc for a function,
This is the resulting invalid TS that I get:
Is there a correct way of handling multi-dimensional arrays of different types or is this a bug in the generation?
The text was updated successfully, but these errors were encountered: