/** * 下划线转驼峰命名 */ export declare const camelCase: (name: string) => string; /** * 获取对象差异 * @param {source} object 原始对象 * @param {target} object 目标对象 */ export declare const checkChanged: (source: object, target: object) => boolean; /** * 判断两数组是否完全相同 * @param {source} [] 原数组 * @param {target} [] 目标数组 */ export declare const sameArray: (source: any[], target: any[]) => boolean; export declare const isType: (value: any, type: string) => boolean; export declare const clone: (source: Object) => {};