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>
19 lines
377 B
Text
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 {}
|