UNPKG
@rickyli79/rich-json
Version:
latest (1.1.4)
1.1.4
1.1.3
1.1.0
1.0.1
1.0.0
0.1.0
Serialize and Deserialize javascript objects
github.com/RickyLi79/rich-json
@rickyli79/rich-json
/
bin
/
serialize.d.ts
8 lines
(7 loc)
•
234 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
type
Arrayable
<T> = T | T[];
export
type
StringifyOptions
= {
pretty
?:
string
|
number
;
excludKeys
?:
Arrayable
<
string
|
RegExp
>; };
export
declare
function
stringify
(
value
:
any
,
options
?:
StringifyOptions
):
string
;
export
{};