You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are some places in my documentation where I want to inline a type, but I don't want to inline it everywhere. What would be good is some way to tell Typedoc to expand it only in one place.
This makes sense to allow to me, TypeDoc should probably support a similar @preventInline / @preventExpand as well.
The syntax will have to be somewhat different as @expand and @inline are already declared as a modifier tag, and tags must be of one type. Further, TypeDoc skips type annotations in braces, so I'm leaning towards @inlineType AgeType
Suggestion
There are some places in my documentation where I want to inline a type, but I don't want to inline it everywhere. What would be good is some way to tell Typedoc to expand it only in one place.
One possible suggestion:
This would show in docs as:
type MyType = { age: number; } & NameType;
The text was updated successfully, but these errors were encountered: