This is one way to do this, your module form can do a lot, but it works with classes and modules:
function one (arg) { console.log(arg) } module.exports = { one: one }
the key is to use @memberof described here .
you can use it with the @class documentation or with the @module document, so it can work with any various forms of a class or module of ES5, ES6 or TypeScript if you document a container object (class or module) with @class or @module.
Result: 
stolli
source share