10 lines
385 B
TypeScript
10 lines
385 B
TypeScript
/**
|
|
* Older browsers and some runtimes don't support this yet
|
|
* This API (as of 2025-05-07) is not available on React Native.
|
|
*/
|
|
export declare function isGzipSupported(): boolean;
|
|
/**
|
|
* Gzip a string using Compression Streams API if it's available
|
|
*/
|
|
export declare function gzipCompress(input: string, isDebug?: boolean): Promise<Blob | null>;
|
|
//# sourceMappingURL=gzip.d.ts.map
|