pmcf 1.53.0 → 1.53.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/base.mjs +2 -1
- package/types/base.d.mts +1 -0
package/package.json
CHANGED
package/src/base.mjs
CHANGED
|
@@ -292,7 +292,8 @@ export class Base {
|
|
|
292
292
|
return {
|
|
293
293
|
properties: {
|
|
294
294
|
name: this.packageName,
|
|
295
|
-
description: `${this.constructor.typeDefinition.name} definitions for ${this.fullName}
|
|
295
|
+
description: `${this.constructor.typeDefinition.name} definitions for ${this.fullName}`,
|
|
296
|
+
access: "private"
|
|
296
297
|
}
|
|
297
298
|
};
|
|
298
299
|
}
|