Question
Basically I need those 'foo1' and 'foo2'. being documented:
/**
* Foo valid values.
*/
export type Foo =
/**
* Doc of foo1.
*/
| 'foo1'
/**
* Doc of foo2.
*/
| 'foo2';
However generated docs look like this (documentation about 'foo1' and 'foo2' is not parsed/included):

I know that I could make it "work" by doing this complex thing:
/**
* Doc of foo1.
*/
export type Foo1 = 'foo1';
/**
* Doc of foo2.
*/
export type Foo2 = 'foo2';
/**
* Foo valid values.
*/
export type Foo = Foo1 | Foo2;
It would produce this:



But this is definitely too complex and definitely not desirable at all. Having to click on each type to see how a string looks is too much. Do I miss something?