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
When TypeDoc sees that the unexported type Email is going to be referenced in the documentation, it could "replace" Email with (value: string) => boolean. But what if it was an accident that the Email type wasn't exported, and now we've erased it from the documentation? 🤔
Additional Context
This was discussed on #1739, see my comment and those that follow.
I have no idea if this is a common problem. This seems like a low priority issue to me.
The text was updated successfully, but these errors were encountered:
I didn't realize this the first time I read this since "namespace-like variables" meant something different to me, this is something you could do with a plugin but is not something I want to include in TypeDoc proper. #1823.
Search Terms
Namespace, not included in the documentation
Problem
The code
produces the warning
and the documentation
Suggested Solution
In my case, I want TypeDoc to treat the above code as
When TypeDoc sees that the unexported type
Email
is going to be referenced in the documentation, it could "replace"Email
with(value: string) => boolean
. But what if it was an accident that theEmail
type wasn't exported, and now we've erased it from the documentation? 🤔Additional Context
This was discussed on #1739, see my comment and those that follow.
I have no idea if this is a common problem. This seems like a low priority issue to me.
The text was updated successfully, but these errors were encountered: