Open FreePhoenix888 opened 1 year ago
@YousefED
@domoritz
We can use capitalCase
from https://www.npmjs.com/package/case-anything
Add JSDoc comment
export interface Abc {
/**
* First name
*/
firstName: string;
}
Remove --titles
parameter from command and add @title
JSDoc comment.
export interface Abc {
/**
* @title First name
*/
firstName: string;
}
Code
Expected
Actual
Additional Info
Why do I need this: I want to use this generated JSON-Schema for form generation using
react-jsonschema-form