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.
16 lines
621 B
16 lines
621 B
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; |
|
}
|
|
|