You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
621 B
17 lines
621 B
2 years ago
|
declare module LZString {
|
||
|
function compressToBase64(input: string): string;
|
||
|
function decompressFromBase64(input: string): string;
|
||
|
|
||
|
function compressToUTF16(input: string): string;
|
||
|
function decompressFromUTF16(compressed: string): string;
|
||
|
|
||
|
function compressToUint8Array(uncompressed: string): Uint8Array;
|
||
|
function decompressFromUint8Array(compressed: Uint8Array): string;
|
||
|
|
||
|
function compressToEncodedURIComponent(input: string): string;
|
||
|
function decompressFromEncodedURIComponent(compressed: string): string;
|
||
|
|
||
|
function compress(input: string): string;
|
||
|
function decompress(compressed: string): string;
|
||
|
}
|