blob: 9ce038a9cad5d0c539c8745bd4b4ca35e7e859bc [file] [log] [blame] [edit]
declare module "lz-string" {
function decompressFromEncodedURIComponent(
input: string | null,
): string | null;
function compressToEncodedURIComponent(input: string | null): string;
}