Rocky_Mountain_Vending/.pnpm-store/v10/files/f8/e01ca221a4e0c23b66de543b5408e3b245f8cca9b34ecb0bda92a01fce13618914c7056a4eee9cb19f7ac6448afbc5a8c34788d206aa1aa21299fb5d38a729
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
367 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;
}