Rocky_Mountain_Vending/.pnpm-store/v10/files/22/c1dc876b31b080d9adaf5127c7bb05de14fd60db67e178b651f9c4dc4552d991cc009b5757b59fc46212fd69bff2d487679a8ac8c108f47f747b43e555a465
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

12 lines
418 B
Text

import type nodeV8 from "node:v8";
export declare class Deserializer implements nodeV8.Deserializer {
readHeader(): boolean;
readValue();
transferArrayBuffer(id: number, arrayBuffer: ArrayBuffer);
getWireFormatVersion(): number;
readUint32(): number;
readUint64(): [number, number];
readDouble(): number;
readRawBytes(length: number): Buffer;
}
export declare class DefaultDeserializer extends Deserializer {}