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>
12 lines
434 B
Text
12 lines
434 B
Text
import type nodeV8 from "node:v8";
|
|
export declare class Serializer implements nodeV8.Serializer {
|
|
writeHeader();
|
|
writeValue(val: any): boolean;
|
|
releaseBuffer(): Buffer;
|
|
transferArrayBuffer(id: number, arrayBuffer: ArrayBuffer);
|
|
writeDouble(value: number);
|
|
writeUint32(value: number);
|
|
writeUint64(hi: number, lo: number);
|
|
writeRawBytes(buffer: NodeJS.TypedArray);
|
|
}
|
|
export declare class DefaultSerializer extends Serializer {}
|