Rocky_Mountain_Vending/.pnpm-store/v10/files/b3/ae291ccaadb7758d1a36ba3f5259bd8612a522b184160486c3c29cc39350d72ff343a58bbb4c250f7e3d5f4f6002656d4c3d19b12cebd4c59a37d136155f09
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

22 lines
782 B
Text

/**
* Adapter for conversions of the native Uint8Array type.
* @public
*/
export declare class Uint8ArrayBlobAdapter extends Uint8Array {
/**
* @param source - such as a string or Stream.
* @param encoding - utf-8 or base64.
* @returns a new Uint8ArrayBlobAdapter extending Uint8Array.
*/
static fromString(source: string, encoding?: string): Uint8ArrayBlobAdapter;
/**
* @param source - Uint8Array to be mutated.
* @returns the same Uint8Array but with prototype switched to Uint8ArrayBlobAdapter.
*/
static mutate(source: Uint8Array): Uint8ArrayBlobAdapter;
/**
* @param encoding - default 'utf-8'.
* @returns the blob as string.
*/
transformToString(encoding?: string): string;
}