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
The signature ``constructor(public foo: string)`` defines a public
property corresponding to the parameter. The signature
``constructor(readonly foo: string)`` defines a public readonly
property but prior to this commit, typedoc would not show this
property in the generated documentation.
FixesTypeStrong#352.
Versions
typedoc: 0.5.1
typescript: 2.0.10
Steps to Reproduce
Create a project with this file named
test.ts
:Run
typedoc
on it.Expected Results
The documentation should list both
a
andb
as properties of the classFoo
.Actual Results
Only
a
is present as property ofFoo
butb
is missing. (They both appear as parameters to the constructor, which is fine.)The text was updated successfully, but these errors were encountered: