UNPKG
tsmaz
Version:
latest (1.5.0)
1.5.0
1.4.0
1.3.0
1.2.2
1.2.1
1.2.0
1.1.0
1.0.3
1.0.2
1.0.0
TypeScript port of the smaz string compression library
github.com/remusao/tsmaz
remusao/tsmaz
tsmaz
/
dist
/
src
/
default.d.ts
4 lines
(3 loc)
•
186 B
TypeScript
View Raw
1
2
3
4
export
declare
function
decompress
(
array
:
Uint8Array
):
string
;
export
declare
function
compress
(
str
:
string
):
Uint8Array
;
export
declare
function
getCompressedSize
(
str
:
string
):
number
;