UNPKG
yuxuannnn_utils
Version:
latest (1.1.2)
1.1.2
1.1.1
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
xs开发的前端工具包
github.com/aiketangdezhiyi/yuxuannnn_utils
aiketangdezhiyi/yuxuannnn_utils
yuxuannnn_utils
/
lib
/
object
/
deepClone.d.ts
16 lines
(15 loc)
•
331 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
;