UNPKG

vite-plugin-singlefile-compression

Version:

Compress all assets and embeds them into `dist/index.html`, making it convenient to share as a single HTML file.

4 lines (3 loc) 198 B
import zlib from 'zlib'; export type compressFormat = "deflate-raw" | "deflate" | "gzip"; export declare function compress(format: compressFormat, buf: zlib.InputType, useBase128: boolean): string;