Skip to content

Commit 1a7dc63

Browse files
committed
refactor(utils): fix types
1 parent d9e1b7c commit 1a7dc63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ export const revertArrayChange = (arr: Array<any>, index: number, change: any):
168168
return arr;
169169
};
170170

171-
export const deepClone = (obj: Object): Object => {
171+
export const deepClone = (obj: any): any => {
172172
if (realTypeOf(obj) === 'object') {
173173
const clone = { ...obj };
174174
for (const k in clone) {

0 commit comments

Comments
 (0)