@stackone/utils 0.21.0 → 0.21.1
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/edge/index.d.mts +2 -2
- package/dist/edge/index.mjs +1 -1
- package/dist/node/index.cjs +1 -1
- package/dist/node/index.d.cts +2 -2
- package/dist/node/index.d.mts +2 -2
- package/dist/node/index.mjs +1 -1
- package/package.json +1 -1
package/dist/edge/index.d.mts
CHANGED
|
@@ -9,8 +9,8 @@ declare function decodeFromBase64(encodedData: string): string;
|
|
|
9
9
|
//#region src/shared/caseConversion.d.ts
|
|
10
10
|
declare const snakeToCamel: (str: string) => string;
|
|
11
11
|
declare const camelToSnake: (str: string) => string;
|
|
12
|
-
declare const convertKeysToCamelCase: <T>(obj: T) => T;
|
|
13
|
-
declare const convertKeysToSnakeCase: <T>(obj: T) => T;
|
|
12
|
+
declare const convertKeysToCamelCase: <T>(obj: T, recursive?: boolean) => T;
|
|
13
|
+
declare const convertKeysToSnakeCase: <T>(obj: T, recursive?: boolean) => T;
|
|
14
14
|
//#endregion
|
|
15
15
|
//#region src/shared/countries/types.d.ts
|
|
16
16
|
type ISO31662SubDivisionCodeNamePairs = {
|