mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
17 lines
268 B
JavaScript
17 lines
268 B
JavaScript
/** @module test */
|
|
|
|
/** Test class */
|
|
export default class {
|
|
/** Test constructor */
|
|
constructor(foo) {
|
|
/** Test member */
|
|
this.foo = foo;
|
|
}
|
|
|
|
/** Test method */
|
|
test() {}
|
|
|
|
/** Test static method */
|
|
static staticTest() {}
|
|
}
|