Closed amphro closed 6 years ago
I'm trying to mark a constructor as private, but it still shows up in the generated documentation with either or both of hideconstructor and private.
/** * Class description * @hideconstructor */ class MyClass { /** * @private */ constructor() {} }
Is there another way to do it or is it not supported right now? If the later, any chance of supporting it?
Tried your exact example, with @hideconstructor, constructor does not appear, but without it - appears. So it looks like it works correctly.
I'm trying to mark a constructor as private, but it still shows up in the generated documentation with either or both of hideconstructor and private.
Is there another way to do it or is it not supported right now? If the later, any chance of supporting it?