mirror of
https://github.com/jsdoc/jsdoc.git
synced 2026-02-01 16:45:41 +00:00
9 lines
114 B
JavaScript
9 lines
114 B
JavaScript
/** Sample class. */
|
|
class A {
|
|
/** Public property. */
|
|
b = 1;
|
|
|
|
/** Private property. */
|
|
#c = 2;
|
|
}
|