-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
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
Improve output for union type aliases #140
Comments
I would really like to see the type still be named as |
@justinfagnani I can definitely see the need for both options. When outputting the markdown-format, some people might want to document their types separately and other people might want to expand and inline all types. Personally, I only see this as valuable when outputting the markdown-format, and perhaps inlining types shouldn't even be an option when outputting the json-format. I'll introduce this functionality through a CLI option called |
Hello, we are using
web-component-analyzer
to generate the documentation for our design system built withlit-element
. Right now we have a lot of type aliases to define that an attribute/property can have only a fixed set of values like this one:The thing is that the output of
web-component-analyzer
for this case is that the attribute/property is typeButtonSize
which is not really helpful for people who is reading the documentation online without reading the source.I saw also in some repositories that maybe this is not the best behavior when the type has a lot of different options, maybe this can be enabled or disabled somehow? Any thoughts on that?
I think that maybe it would be really handy that, in the case we have an alias that is a union type composed only of strings literals, to print the value of those strings literals like:
"normal" | "small" | "large" | "none" | "extra-small"
. This is exactly what is already happening when a union type is used but is not aliased, like in this case:What do you think about this change? Do you think it makes sense?
I know that how the value is printed is handled by ts-simple-type but for this case I think it doesn't make sense to do it there.
I was already taking a look about how to implement it and I would be willing to provide a pull request 😄
The text was updated successfully, but these errors were encountered: