@punks/backend-core 0.0.45 → 0.0.47
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/cjs/index.js +8 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/utils/objects/index.d.ts +1 -0
- package/dist/esm/index.js +8 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/utils/objects/index.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -9,5 +9,6 @@ export declare const buildObject: <T>(...props: {
|
|
|
9
9
|
export declare const mergeDeep: <T>(a: any, b: any) => T;
|
|
10
10
|
export declare const jsonSerialize: (obj: any, options?: {
|
|
11
11
|
stripBinaryData?: boolean;
|
|
12
|
+
maxStringsLength?: number;
|
|
12
13
|
prettify?: boolean;
|
|
13
14
|
}) => string;
|
package/dist/index.d.ts
CHANGED
|
@@ -162,6 +162,7 @@ declare const buildObject: <T>(...props: {
|
|
|
162
162
|
declare const mergeDeep: <T>(a: any, b: any) => T;
|
|
163
163
|
declare const jsonSerialize: (obj: any, options?: {
|
|
164
164
|
stripBinaryData?: boolean;
|
|
165
|
+
maxStringsLength?: number;
|
|
165
166
|
prettify?: boolean;
|
|
166
167
|
}) => string;
|
|
167
168
|
|