Rocky_Mountain_Vending/.pnpm-store/v10/files/ea/4066eeb437060a14754dd737afbf2150c7cf527b8cc8dd4f08ac6c63ffa1ec976044b1bcbe68d01c44486ef770a65d477d61c924912fbe1b7bab5342922d8f
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

19 lines
377 B
Text

/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* A minimal type for Node's `Buffer` to avoid importing all Node types for
* atob/btoa fallback for testing `text-encoding.js`.
*/
declare global {
class Buffer {
static from(str: string, encoding?: string): Buffer;
toString(encoding?: string): string;
}
}
export {}