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>
15 lines
485 B
Text
15 lines
485 B
Text
/**
|
|
* @param key - JSON object key.
|
|
* @param value - parsed value.
|
|
* @param context - original JSON string for reference. Not available until Node.js 21 and unavailable in Safari as
|
|
* of April 2025.
|
|
*
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse#browser_compatibility
|
|
*
|
|
* @internal
|
|
*
|
|
* @returns transformed value.
|
|
*/
|
|
export declare function jsonReviver(key: string, value: any, context?: {
|
|
source?: string;
|
|
}): any;
|