replace-all-mustaches 0.0.12 → 0.0.13
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/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/nodes/Variable.ts +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -18,7 +18,7 @@ type MustacheIterationOptions = {
|
|
|
18
18
|
*/
|
|
19
19
|
declare function replaceAllMustaches(template: string, { maxPasses, detectCycles }?: MustacheIterationOptions): string;
|
|
20
20
|
|
|
21
|
-
type MustacheValue = string | string[] | Function;
|
|
21
|
+
type MustacheValue = string | string[] | Function | Object;
|
|
22
22
|
/**
|
|
23
23
|
* A key-value pair for a variable name and its value.
|
|
24
24
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ type MustacheIterationOptions = {
|
|
|
18
18
|
*/
|
|
19
19
|
declare function replaceAllMustaches(template: string, { maxPasses, detectCycles }?: MustacheIterationOptions): string;
|
|
20
20
|
|
|
21
|
-
type MustacheValue = string | string[] | Function;
|
|
21
|
+
type MustacheValue = string | string[] | Function | Object;
|
|
22
22
|
/**
|
|
23
23
|
* A key-value pair for a variable name and its value.
|
|
24
24
|
*/
|
package/package.json
CHANGED
package/src/nodes/Variable.ts
CHANGED