UNPKG
@clynn-fe/akfe-editor-jsonc
Version:
latest (2.2.6)
2.2.6
2.2.5
JSON Compress by using a map to reduce the size of keys and using gzip
@clynn-fe/akfe-editor-jsonc
/
dist
/
index.d.ts
8 lines
(7 loc)
•
295 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
declare
const
_default
:
Readonly
<{
compress
:
(
json
:
any
,
optKeys
?: [
string
,
string
][] |
undefined
) =>
string
;
decompress
:
(
json
:
string
) =>
any
;
pack
:
(
json
:
any
,
bCompress
:
boolean
) =>
string
;
unpack
:
(
gzipped
:
string
,
bDecompress
:
boolean
) =>
any
; }>;
export
default
_default;