/** @module test */ /** Test class */ export default class { /** Test constructor */ constructor(foo) { /** Test member */ this.foo = foo; } /** Test method */ test() {} /** Test static method */ static staticTest() {} }