Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
609 B
Text
14 lines
609 B
Text
import type nodeZlib from "node:zlib";
|
|
import { ZlibCompress, ZLibDecompress } from "./_shared.mjs";
|
|
export declare class Gzip extends ZlibCompress {
|
|
readonly _format = "gzip";
|
|
}
|
|
export declare const gzip: typeof nodeZlib.gzip;
|
|
export declare const createGzip: typeof nodeZlib.createGzip;
|
|
export declare const gzipSync: typeof nodeZlib.gzipSync;
|
|
export declare class Gunzip extends ZLibDecompress {
|
|
readonly _format = "gzip";
|
|
}
|
|
export declare const gunzip: typeof nodeZlib.gunzip;
|
|
export declare const createGunzip: typeof nodeZlib.createGunzip;
|
|
export declare const gunzipSync: typeof nodeZlib.gunzipSync;
|