Rocky_Mountain_Vending/.pnpm-store/v10/files/d1/d157d5500c1b43c812ad87aca2d49ce39cb77d75a4a15d1422b1e0c8c2d97e56e1804841eb227a169534bc84284733de8bef000bc620ed768389c48582bf6e
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

19 lines
947 B
Text

import type nodeZlib from "node:zlib";
import { Transform, type TransformOptions } from "node:stream";
export declare abstract class ZlibCompress extends Transform {
readonly __unenv__: true;
readonly bytesRead = 0;
readonly bytesWritten = 0;
abstract readonly _format: undefined | "deflate" | "gzip" | "zlib" | "brotli" | "zip";
constructor(opts?: TransformOptions);
close(callback?: () => void);
flush(kind?: number | undefined, callback?: (() => void) | undefined): void;
flush(callback?: (() => void) | undefined): void;
}
export declare abstract class ZLibDecompress extends ZlibCompress {}
export interface CompressFunction {
(buf: nodeZlib.InputType, options?: any, callback?: nodeZlib.CompressCallback): void;
(buf: Buffer, callback?: nodeZlib.CompressCallback): void;
__promisify__(buffer: nodeZlib.InputType, options?: any): Promise<Buffer>;
}
export declare function notImplementedCompress(format: string): CompressFunction;