Right now private methods are generated. It's necessary to add an option to not show those private methods.
This is the line that would need changing (I think):
From ->
.filter(method => !method.ignore && method.ctx)
To ->
.filter(method => !method.ignore && !method.isPrivate && method.ctx)