UNPKG
@gilbarbara/deep-equal
Version:
latest (0.3.1)
0.3.1
0.3.0
0.2.0
0.1.2
0.1.1
0.1.0
Tiny deep equal comparator
github.com/gilbarbara/deep-equal
gilbarbara/deep-equal
@gilbarbara/deep-equal
/
src
/
types.ts
4 lines
(2 loc)
•
156 B
text/typescript
View Raw
1
2
3
4
export
type
AnyObject
=
Record
<
number
|
string
|
symbol
,
unknown
>;
export
type
Primitive
=
null
|
undefined
|
string
|
number
|
boolean
|
symbol
|
bigint
;