esdoc / esdoc-plugins

MIT License
140 stars 77 forks source link

TypeScript plugin doesn't respect access modifiers #104

Open fab1o opened 2 years ago

fab1o commented 2 years ago

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