UNPKG

yuxuannnn_utils

Version:
16 lines (15 loc) 331 B
export interface KeyStringObject { [key: string]: any; } /** * 判断是对象还是数组 * @param obj * @returns */ export declare const getObjOrArrayType: (obj: any) => "object" | "array" | undefined; /** * 深克隆对象 * @param obj * @returns */ export declare const deepClone: (obj: any) => any;