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
/
trie.d.ts
8 lines
(7 loc)
•
168 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
interface
ITrie
{
chars
: { [
key
:
string
]:
ITrie
; };
code
:
number
|
undefined
; }
export
default
function
makeTrie
(
codebook
:
string
[]
):
ITrie
;