Rocky_Mountain_Vending/.pnpm-store/v10/files/d8/90e38b03be9f84dc6de7f94f705f83af02b87751808cced2f54a661c83223af120da23c292f4a709b31e656598d4a3b16b29c33fdae9fc7880d5dfdd667525
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

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;