UNPKG

tsmaz

Version:

TypeScript port of the smaz string compression library

8 lines (7 loc) 168 B
export interface ITrie { chars: { [key: string]: ITrie; }; code: number | undefined; } export default function makeTrie(codebook: string[]): ITrie;