mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 21:09:30 +08:00
16 lines
621 B
Text
16 lines
621 B
Text
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;
|
|
}
|