TypeScript plugin doesn't respect access modifiers
Opened this issue · 0 comments
fab1o commented
This method shouldn't show up in the generated docs, even if I don't set @access private
, it should be able to read that the method is private.
code.ts:
private examplePrivateMethod(): boolean {
return true;
}
It shows in the docs as a public method