UNPKG
@supercharge/json
Version:
latest (2.0.0)
2.0.0
1.1.0
1.0.0
Secure drop-in replacement for the global `JSON` object
github.com/supercharge/json
supercharge/json
@supercharge/json
/
dist
/
index.d.ts
10 lines
(9 loc)
•
240 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{ parse }
from
'./parse'
;
import
{ stringify }
from
'./stringify'
;
export
*
from
'./parse'
;
export
*
from
'./stringify'
;
declare
const
_default
: {
parse
:
typeof
parse;
stringify
:
typeof
stringify; };
export
default
_default;