UNPKG

spy-client

Version:

spy client

10 lines (9 loc) 218 B
/** * @file Huffman * @author kaivean */ export declare function huffmanEncode(str: string): { codes: any; result: string; }; export declare function huffmanDecode(codes: any, str: string): string;