Skip to content

Commit 271ab69

Browse files
committed
doc: mark non-exported classes as private
1 parent c57a6fc commit 271ab69

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

jsdoc.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
module.exports = {
2828
source: {
29-
include: ["README.md", "src"],
29+
include: ["README.md", "package.json", "src"],
3030
includePattern: ".+\\.(js|md)$",
3131
excludePattern: ".test.js$",
3232
},

src/JsonURL.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -386,6 +386,7 @@ Object.defineProperty(String.prototype, "toJsonURLText", {
386386

387387
/**
388388
* A class for managing values during parse
389+
* @private
389390
*/
390391
class StateStack extends Array {
391392
constructor(parser) {
@@ -431,6 +432,7 @@ class StateStack extends Array {
431432

432433
/**
433434
* A class for managing values during parse
435+
* @private
434436
*/
435437
class ValueStack extends Array {
436438
constructor(parser) {
@@ -493,6 +495,7 @@ class ValueStack extends Array {
493495

494496
/**
495497
* A class for parsing JSON->URL text.
498+
* @public
496499
*/
497500
class JsonURL {
498501
/**

0 commit comments

Comments
 (0)