Rocky_Mountain_Vending/.pnpm-store/v10/files/35/eab7060e397c44918e739abaf257bff5a4b6c6372efd7de928d586db385bffd5c715cb68d8ab3301bda6e6faef31b1b5a147db798d0e4ea26749a3dafcae03
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

13 lines
354 B
Text

/**
* Aggregates byteArrays on demand.
* @internal
*/
export declare class ByteArrayCollector {
readonly allocByteArray: (size: number) => Uint8Array;
byteLength: number;
private byteArrays;
constructor(allocByteArray: (size: number) => Uint8Array);
push(byteArray: Uint8Array): void;
flush(): Uint8Array;
private reset;
}