mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
17 lines
621 B
TypeScript
17 lines
621 B
TypeScript
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;
|
|
}
|