/** * * @param obj `{ key: value }` * @returns obj `{ key: value }` * * * @argument Result type as Object interface to type the return * @argument Input type as Object interface to validate arguments type * @example * objectKeysToCamelCase({}); * * @example * * interface Result { * goodMorning: string * goodAfternoon: string * } * * interface Input { * good_morning: string, * good_afternoon: string * } * * const result = objectKeysToCamelCase( * { * good_morning: "Its a beautfull day", * good_afternoon: "Nice afternoon" * } * ); * */ declare const objectKeysToCamelCaseV2: (obj: Input) => Result; export { objectKeysToCamelCaseV2 }; export default objectKeysToCamelCaseV2;