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
package/src/output/packager.mjs
CHANGED
|
@@ -41,9 +41,9 @@ export class Packager {
|
|
|
41
41
|
get hookMapping(): {};
|
|
42
42
|
/**
|
|
43
43
|
* Generate hook content entries
|
|
44
|
-
* @return {AsyncIterable<
|
|
44
|
+
* @return {AsyncIterable<StringContentEntry>}
|
|
45
45
|
*/
|
|
46
|
-
hookContent(): AsyncIterable<
|
|
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";
|