9 lines
235 B
Plaintext
9 lines
235 B
Plaintext
export declare const compressBlob: (data: Blob) => Promise<{
|
|
size: number;
|
|
content: Blob;
|
|
}>;
|
|
export declare const deflateLocalFile: (rawContent: string | Uint8Array) => Promise<{
|
|
size: number;
|
|
content: Uint8Array;
|
|
}>;
|