mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-09 20:07:01 +00:00
6 lines
195 B
TypeScript
6 lines
195 B
TypeScript
declare module "lz-string" {
|
|
function decompressFromEncodedURIComponent(
|
|
input: string | null,
|
|
): string | null;
|
|
function compressToEncodedURIComponent(input: string | null): string;
|
|
}
|