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 describing a function with fields using typescript const declarations, the fields are not getting documented:
/** The FOO function */functionfoo(){return"foo";}functionbugInner(): {foo: string}{return{foo: "bar"}}/** * The BUG function */exportconstbug: {(): {foo: string}foo: typeoffoobar: 42}=Object.assign(bugInner,{
foo,bar: 42asconst,});
Expected Behavior
fields get documented
Actual Behavior
fields are not documented, only the root function (bug) gets documented:
Search terms
when describing a function with fields using typescript const declarations, the fields are not getting documented:
Expected Behavior
fields get documented
Actual Behavior
fields are not documented, only the root function (
bug
) gets documented:Steps to reproduce the bug
TypeStrong/typedoc-repros#34
Environment
The text was updated successfully, but these errors were encountered: