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>
16 lines
441 B
Text
16 lines
441 B
Text
/// <reference types="node" />
|
|
export declare class Writer {
|
|
private size;
|
|
private buffer;
|
|
private offset;
|
|
private headerPosition;
|
|
constructor(size?: number);
|
|
private ensure;
|
|
addInt32(num: number): Writer;
|
|
addInt16(num: number): Writer;
|
|
addCString(string: string): Writer;
|
|
addString(string?: string): Writer;
|
|
add(otherBuffer: Buffer): Writer;
|
|
private join;
|
|
flush(code?: number): Buffer;
|
|
}
|