reinforced / Reinforced.Typings

Converts C# classes to TypeScript interfaces (and many more) within project build. 0-dependency, minimal, gluten-free
MIT License
507 stars 82 forks source link

Is it possible to generate union? #253

Open dariusz-wozniak opened 1 year ago

dariusz-wozniak commented 1 year ago

Having IEnumerable<string> as an input, I'd like to generate union, like:

type TypeName = "value1" | "value2" | "value3"

Is that possible? Thank you