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
No EOL
361 B
Text
16 lines
No EOL
361 B
Text
export declare class StringWriter {
|
|
pos: number;
|
|
private out;
|
|
private buffer;
|
|
write(v: number): void;
|
|
flush(): string;
|
|
}
|
|
export declare class StringReader {
|
|
pos: number;
|
|
private buffer;
|
|
constructor(buffer: string);
|
|
next(): number;
|
|
peek(): number;
|
|
indexOf(char: string): number;
|
|
}
|
|
//# sourceMappingURL=strings.d.ts.map |