@emqx/shared-ui-utils 0.0.20 → 0.0.21

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/hocon.d.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * @param data - The object to convert.
5
5
  * @returns The HOCON string representation of the object.
6
6
  */
7
- export declare const objectToHocon: (data: Record<string, any>) => string;
7
+ export declare const objectToHocon: (data: Record<string, any>, objLevel?: number) => string;
8
8
  /**
9
9
  * Parse a HOCON string into a JavaScript object.
10
10
  * Returns an empty object if the input is empty or whitespace.