chore: fix lint issues
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { deepAssign } from './deep-assign';
|
||||
|
||||
export function deepClone(obj: object): object {
|
||||
export function deepClone(obj: Record<string, any>): Record<string, any> {
|
||||
if (Array.isArray(obj)) {
|
||||
return obj.map((item) => deepClone(item));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user