UNPKG
equation-sdk
Version:
latest (1.0.7)
1.0.7
1.0.6
1.0.5
1.0.3
1.0.1
1.0.0
🛠An SDK for building applications on top of Equation.
equation-sdk
/
dist
/
utils
/
toCamelCase.d.ts
7 lines
(6 loc)
•
253 B
TypeScript
View Raw
1
2
3
4
5
6
7
/** * Converts an
object
or
an array of objects to camel
case
. * @param obj - The
object
or
array of objects to convert. * @returns The converted
object
or
array of objects
in
camel
case
. */ export declare function toCamelCase(obj:
any
):
any
;