jsdoc/test/fixtures/anonymousclass.js
2015-12-07 16:01:22 -08:00

20 lines
327 B
JavaScript

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