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>
13 lines
367 B
Text
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;
|
|
}
|