npm-pkgbuild 20.4.1 → 20.4.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "npm-pkgbuild",
3
- "version": "20.4.1",
3
+ "version": "20.4.2",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": false
@@ -86,7 +86,7 @@ export class Packager {
86
86
 
87
87
  /**
88
88
  * Generate hook content entries
89
- * @return {AsyncIterable<ContentEntry>}
89
+ * @return {AsyncIterable<StringContentEntry>}
90
90
  */
91
91
  async *hookContent() {
92
92
  const properties = this.properties;
@@ -41,9 +41,9 @@ export class Packager {
41
41
  get hookMapping(): {};
42
42
  /**
43
43
  * Generate hook content entries
44
- * @return {AsyncIterable<ContentEntry>}
44
+ * @return {AsyncIterable<StringContentEntry>}
45
45
  */
46
- hookContent(): AsyncIterable<ContentEntry>;
46
+ hookContent(): AsyncIterable<StringContentEntry>;
47
47
  /**
48
48
  * Forms an expression string form name and expression.
49
49
  * If tere is no valid exression name only is delivered.
@@ -204,3 +204,4 @@ export type Field = {
204
204
  default: any;
205
205
  mandatory: boolean;
206
206
  };
207
+ import { StringContentEntry } from "content-entry";