mirror of
https://github.com/astral-sh/ruff
synced 2026-01-20 21:10:48 -05:00
7 lines
195 B
TypeScript
7 lines
195 B
TypeScript
declare module "lz-string" {
|
|
function decompressFromEncodedURIComponent(
|
|
input: string | null,
|
|
): string | null;
|
|
function compressToEncodedURIComponent(input: string | null): string;
|
|
}
|