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
When the first character of the title is a number, the conversion fails. The following preview link reproduces.
https://borischerny.com/json-schema-to-typescript-browser/#schema=%7B%0A%20%20%22type%22:%20%22object%22,%0A%20%20%22properties%22:%20%7B%0A%20%20%20%20%22android%22:%20%7B%0A%20%20%20%20%20%20%22type%22:%20%22object%22,%0A%20%20%20%20%20%20%22properties%22:%20%7B%0A%20%20%20%20%20%20%20%20%22version%22:%20%7B%0A%20%20%20%20%20%20%20%20%20%20%22type%22:%20%22string%22,%0A%20%20%20%20%20%20%20%20%20%20%22title%22:%20%22%E7%89%88%E6%9C%AC%E5%8F%B7%22%0A%20%20%20%20%20%20%20%20%7D,%0A%20%20%20%20%20%20%20%20%22forceUpdate%22:%20%7B%0A%20%20%20%20%20%20%20%20%20%20%22type%22:%20%22integer%22,%0A%20%20%20%20%20%20%20%20%20%20%22title%22:%20%221%E5%BC%BA%E6%9B%B40%E9%9D%9E%E5%BC%BA%E6%9B%B4%22%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D,%0A%20%20%20%20%20%20%22required%22:%20%5B%0A%20%20%20%20%20%20%20%20%22version%22,%0A%20%20%20%20%20%20%20%20%22forceUpdate%22%0A%20%20%20%20%20%20%5D%0A%20%20%20%20%7D%0A%20%20%7D,%0A%20%20%22required%22:%20%5B%0A%20%20%20%20%22android%22%0A%20%20%5D%0A%7D
The text was updated successfully, but these errors were encountered:
The title will be generated to a type name like type Title = xxx , the type name can't start with the number is Typescript Grammarly required.
type Title = xxx
Sorry, something went wrong.
No branches or pull requests
When the first character of the title is a number, the conversion fails.
The following preview link reproduces.
https://borischerny.com/json-schema-to-typescript-browser/#schema=%7B%0A%20%20%22type%22:%20%22object%22,%0A%20%20%22properties%22:%20%7B%0A%20%20%20%20%22android%22:%20%7B%0A%20%20%20%20%20%20%22type%22:%20%22object%22,%0A%20%20%20%20%20%20%22properties%22:%20%7B%0A%20%20%20%20%20%20%20%20%22version%22:%20%7B%0A%20%20%20%20%20%20%20%20%20%20%22type%22:%20%22string%22,%0A%20%20%20%20%20%20%20%20%20%20%22title%22:%20%22%E7%89%88%E6%9C%AC%E5%8F%B7%22%0A%20%20%20%20%20%20%20%20%7D,%0A%20%20%20%20%20%20%20%20%22forceUpdate%22:%20%7B%0A%20%20%20%20%20%20%20%20%20%20%22type%22:%20%22integer%22,%0A%20%20%20%20%20%20%20%20%20%20%22title%22:%20%221%E5%BC%BA%E6%9B%B40%E9%9D%9E%E5%BC%BA%E6%9B%B4%22%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D,%0A%20%20%20%20%20%20%22required%22:%20%5B%0A%20%20%20%20%20%20%20%20%22version%22,%0A%20%20%20%20%20%20%20%20%22forceUpdate%22%0A%20%20%20%20%20%20%5D%0A%20%20%20%20%7D%0A%20%20%7D,%0A%20%20%22required%22:%20%5B%0A%20%20%20%20%22android%22%0A%20%20%5D%0A%7D
The text was updated successfully, but these errors were encountered: